/* ==========================================================================
   AURUM EDIFIQ - TYPOGRAPHY DESIGN SYSTEM & SCROLLSPY ACTIVE MENU
   Hero Title: 'Italiana' (13rem Monumental Serif)
   Typography: 'Trueno' (Regular 400, SemiBold 600, Bold 700, ExtraBold 800, Black 900)
   Primary Colors: Pure White (#FFFFFF), Architectural Off-White (#F8F7F4), Aurum Gold (#a1852f)
   Aesthetic Geometry: 100% Square Buttons & Cards (border-radius: 0)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");

/* --------------------------------------------------------------------------
   TRUENO FONT-FACE DECLARATIONS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenoultlt.otf") format("opentype");
  font-weight: 100 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenorg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenosbd.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenobd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenoexbd.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trueno";
  src: url("../fonts/truenoblk.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   AZONIX FONT-FACE DECLARATION
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Azonix";
  src: url("../fonts/Azonix.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AzonixRegular";
  src: url("../fonts/Azonix.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* White & Gold Architectural Palette */
  --gold-primary: #a1852f;
  --gold-light: #c5a94d;
  --gold-dark: #766020;
  --gold-footer: #8c7226;
  --gold-bg-light: rgba(161, 133, 47, 0.06);

  --bg-white: #ffffff;
  --bg-light: #f8f7f4;
  --bg-surface: #f3f2ee;
  --bg-card: #ffffff;

  --border-light: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(161, 133, 47, 0.25);

  --text-dark: #111317;
  --text-body: #3a3d45;
  --text-muted: #6b707c;
  --text-light: #ffffff;

  /* Standardized Typography Rules (Trueno for Headings & Body) */
  --font-italiana: "Italiana", serif;
  --font-heading: "Trueno", sans-serif;
  --font-sans: "Trueno", sans-serif;
  --font-azonix: "AzonixRegular", "Azonix", sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.04);
}

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

/* Custom Global Text Selection (Aurum Gold) */
::selection {
  background-color: var(--gold-primary);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--gold-primary);
  color: #ffffff;
}

/* Hide Native Scrollbar Space so Layout extends 100% full width */
::-webkit-scrollbar {
  width: 0px !important;
  height: 0px !important;
  background: transparent !important;
}

* {
  scrollbar-width: none !important;
}

/* Floating Overlay Scrollbar Pill (Glued to Right Edge + Auto-Hide) */
.custom-scroll-bar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-scroll-bar-overlay.visible {
  opacity: 1;
}

.custom-scroll-thumb-pill {
  width: 100%;
  height: 80px;
  background-color: var(--gold-primary);
  border-radius: 0 !important; /* SQUARE FLOATING PILL */
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: -2px 0 10px rgba(161, 133, 47, 0.4);
  will-change: transform;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-white);
}

/* Section Titles use Sora Bold / Extrabold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none !important;
}

/* Global Strict Link Decoration Reset */
a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none !important;
}

/* Containers & Sections */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Tag & Labels (Sora) */
.tag-architectural {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.tag-architectural::before,
.tag-architectural::after {
  content: "";
  width: 36px;
  height: 1.5px;
  background-color: var(--gold-primary);
  display: inline-block;
  flex-shrink: 0;
}

/* ==========================================================================
   HIGH-END EDITORIAL ARCHITECTURAL BUTTONS (LIQUID CURTAIN & ARROW SLIDE)
   ========================================================================== */
button,
.btn,
.btn-editorial,
.btn-gold-solid,
.btn-ghost-dark,
.btn-footer-white {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1 !important;
  border-radius: 0 !important; /* STRICT ARCHITECTURAL SQUARE CORNERS */
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  z-index: 1;
}

/* Ensure Button Text & Icons Sit Above Liquid Layer */
.btn-editorial span,
.btn-editorial i,
.btn-gold-solid span,
.btn-gold-solid i,
.btn-ghost-dark span,
.btn-ghost-dark i,
.btn-footer-white span,
.btn-footer-white i {
  position: relative;
  z-index: 3;
  transition:
    transform 0.35s var(--ease-out-expo),
    color 0.35s ease;
  will-change: transform;
}

/* Liquid Background Curtain Overlay */
.btn-liquid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
}

/* 1. GOLD SOLID BUTTON (Hero & Main CTAs) */
.btn-gold-solid {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
}

.btn-gold-solid .btn-liquid-bg {
  background: #ffffff; /* White Luxury Fill on Hover */
}

.btn-gold-solid:hover {
  border-color: var(--gold-primary) !important;
  color: var(--gold-primary) !important;
}

.btn-gold-solid:hover span,
.btn-gold-solid:hover i {
  color: var(--gold-primary) !important;
}

/* 2. GHOST DARK BUTTON (Editorial Secondary CTAs) */
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-ghost-dark .btn-liquid-bg {
  background: #ffffff; /* White Luxury Fill on Hover */
}

.btn-ghost-dark:hover {
  border-color: var(--gold-primary) !important;
  color: var(--gold-primary) !important;
}

.btn-ghost-dark:hover span,
.btn-ghost-dark:hover i {
  color: var(--gold-primary) !important;
}

/* 3. FOOTER WHITE BUTTON */
.btn-footer-white {
  background-color: #ffffff;
  color: var(--gold-dark);
  border: 1px solid #ffffff;
}

.btn-footer-white .btn-liquid-bg {
  background: #111317; /* Dark Onyx Fill on Footer Gold BG */
}

.btn-footer-white:hover {
  border-color: #111317 !important;
  color: #ffffff !important;
}

.btn-footer-white:hover span,
.btn-footer-white:hover i {
  color: #ffffff !important;
}

/* 3.1 TESTIMONIALS (DEPOIMENTOS) BUTTON - HOVER TURNS INTO GOLD */
.testimonials-section-brand .btn-footer-white .btn-liquid-bg {
  background: var(--gold-primary); /* Gold Fill on Hover */
}

.testimonials-section-brand .btn-footer-white:hover {
  background-color: var(--gold-primary) !important;
  border-color: var(--gold-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(161, 133, 47, 0.4) !important;
}

.testimonials-section-brand .btn-footer-white:hover span,
.testimonials-section-brand .btn-footer-white:hover i {
  color: #ffffff !important;
}

/* ==========================================================================
   HEADER NAV & SCROLLSPY ACTIVE STATES (PRESERVING USER'S SCROLLED STYLES)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.4s var(--ease-out-expo);
}

.header-nav.scrolled {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-nav.scrolled.nav-solid-white {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.header-nav nav {
  margin-left: auto;
  margin-right: 24px;
}
.brand-logo {
  display: flex;
}
.brand-logo img {
  height: 38px;
  max-width: 250px;
  width: auto;
  transition: filter 0.3s ease;
}

/* Navbar Links (Sora) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  position: relative;
  padding: 4px;
}

.nav-links li {
  position: relative;
  z-index: 1;
}

.nav-links a {
  display: inline-block;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none !important;
  border: none !important;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.nav-links a:hover {
  color: var(--gold-primary);
}

/* ACTIVE SCROLLSPY LINK COLOR (GOLD AURUM) */
.nav-links a.active {
  color: var(--gold-primary) !important;
  font-weight: 700 !important;
}

/* NAV DROPDOWN STYLING (LUXURY EDITORIAL DROPDOWN) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.85rem;
  margin-left: 2px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  padding: 10px 0 !important;
  margin: 6px 0 0 0 !important;
  list-style: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  z-index: 999;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  display: block !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-menu li::before,
.dropdown-menu li::after {
  display: none !important;
  content: "" !important;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: rgba(161, 133, 47, 0.08);
  color: var(--gold-primary) !important;
  font-weight: 700 !important;
}

.nav-text-span {
  display: inline-block;
  vertical-align: middle;
  will-change: opacity, transform;
}

.mobile-close-btn {
  display: none;
}

.mobile-menu-cta {
  display: none;
}

.header-whatsapp-btn {
  padding: 12px 26px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.menu-trigger {
  display: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--text-dark);
  font-size: 1.95rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.menu-trigger:hover,
.menu-trigger:active {
  color: var(--gold-primary);
  transform: scale(1.08);
}

.mobile-only-nav-link,
.mobile-menu-logo-item {
  display: none !important;
}

@media (max-width: 992px) {
  .desktop-only-dropdown {
    display: none !important;
  }

  .brand-logo img {
    max-width: 200px;
  }

  .mobile-only-nav-link {
    display: block !important;
  }

  .mobile-menu-logo-item {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 28px !important;
    margin-top: -20px !important;
    width: 100% !important;
  }

  .mobile-menu-logo-item a {
    display: inline-block !important;
    text-decoration: none !important;
    line-height: 1 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .mobile-menu-logo {
    height: 58px;
    max-width: 200px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
  }

  .mobile-menu-logo:active {
    transform: scale(0.95);
  }

  .nav-links {
    display: none;
  }

  /* Hide top WhatsApp button on mobile, show only inside menu */
  .header-whatsapp-btn {
    display: none !important;
  }

  .menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 100% FULLSCREEN MOBILE DRAWER MENU WITH PERFECT CENTERED LINKS & FIXED TOP-RIGHT CLOSE BUTTON */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding: 0 24px !important;
    margin: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
    z-index: 99999 !important;
    box-shadow: none !important;
    list-style: none !important;
    will-change: opacity, transform;
  }

  .nav-links.open li:not(.desktop-only-dropdown) {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .desktop-only-dropdown,
  .nav-links.open li.desktop-only-dropdown {
    display: none !important;
  }

  /* FIXED TOP-RIGHT CLOSE BUTTON OF THE OPEN MENU */
  .mobile-close-btn {
    display: flex !important;
    position: fixed !important;
    top: 36px !important;
    right: 28px !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: var(--text-dark) !important;
    font-size: 2.2rem !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    line-height: 1 !important;
    transition:
      transform 0.3s ease,
      color 0.3s ease !important;
  }

  .mobile-close-btn:hover,
  .mobile-close-btn:active {
    color: var(--gold-primary) !important;
    transform: rotate(90deg) !important;
  }

  .nav-links.open a:not(.btn-mobile-whatsapp) {
    display: inline-block !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.15em !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  .mobile-menu-cta {
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .btn-mobile-whatsapp {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--gold-primary) !important;
    background: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: #ffffff !important;
    letter-spacing: 0.1em !important;
    gap: 10px !important;
    border-radius: 0 !important;
  }

  .btn-mobile-whatsapp span,
  .btn-mobile-whatsapp i {
    color: #ffffff !important;
  }
}

/* ==========================================================================
   1. HERO ELYSE REFERENCE LAYOUT
   ========================================================================== */
.hero-elyse-exact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  padding-top: 140px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transform: scale(1.04);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
  will-change: transform, filter;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 247, 244, 0.7) 0%,
    rgba(248, 247, 244, 0.4) 40%,
    rgba(248, 247, 244, 0.95) 100%
  );
}

.hero-exact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: flex-end;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-exact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Giant Monumental Title "AURUM EDIFIQ" */
.hero-title-side {
  will-change: transform, opacity, filter;
}

.hero-giant-title {
  font-family: var(--font-azonix);
  font-size: 10.8rem;
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.hero-giant-title span {
  display: block;
  position: relative;
  will-change: transform, opacity, filter;
}

#heroTextAurum {
  z-index: 2;
  font-weight: 400;
}

.hero-giant-title .gold-sub-title {
  color: var(--gold-primary);
  font-size: 10.8rem;
  z-index: 1;
  font-weight: 400;
  margin-left: 0;
}

@media (max-width: 1400px) {
  .hero-giant-title {
    font-size: 8rem;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 8rem;
  }
}

@media (max-width: 992px) {
  .hero-giant-title {
    font-size: 5.5rem;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 5.5rem;
  }
}

@media (max-width: 576px) {
  .hero-giant-title {
    font-size: 3.2rem;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 3.2rem;
  }
}

/* Right Side Information (Sora + Fraunces Subhead) */
.hero-info-side {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 992px) {
  .hero-info-side {
    padding-left: 0;
  }
}

.hero-subhead-italic {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: none !important;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .hero-subhead-italic {
    font-size: 1.4rem;
  }
}

.hero-lead-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta-single {
  margin-bottom: 20px;
}

/* ==========================================================================
   2. MANIFESTO & PHILOSOPHY
   ========================================================================== */
.manifesto-section {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.manifesto-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .manifesto-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.manifesto-quote-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  text-transform: none !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .manifesto-quote-title {
    font-size: 1.95rem;
  }
}

.manifesto-text-block p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.85;
}

.manifesto-quote-box {
  border-left: 3px solid var(--gold-primary);
  padding-left: 28px;
  margin-top: 40px;
  background-color: var(--gold-bg-light);
  padding: 24px 28px;
  border-radius: 0 !important; /* SQUARE QUOTE BOX */
}

.manifesto-quote-box p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold-dark);
  margin-bottom: 0;
  text-transform: none !important;
}

/* ==========================================================================
   3. PAIN POINTS / FRUSTRAÇÕES (SQUARE CARDS)
   ========================================================================== */
.pains-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.pains-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.pains-head h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .pains-head h2 {
    font-size: 2rem;
  }
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 36px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .pains-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.pain-card-editorial {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold-primary);
  padding: 58px 36px 36px 36px;
  border-radius: 0 !important; /* SQUARE PAIN CARDS */
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-subtle);
  transition:
    border-color 0.4s ease,
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s ease;
  opacity: 1 !important;
  visibility: visible !important;
  text-align: center;
}

.pain-card-editorial:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(161, 133, 47, 0.12);
}

.pain-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  transition: all 0.35s ease;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pain-card-editorial:hover .pain-icon-wrapper {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(161, 133, 47, 0.25);
}

.pain-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: none !important;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pain-card-body p {
  font-family: var(--font-sans);
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ==========================================================================
   4. PROCESS / PROCESSO (DYNAMIC TIMELINE: HORIZONTAL DESKTOP / VERTICAL MOBILE)
   ========================================================================== */
.process-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  position: relative;
}

.process-head {
  margin-bottom: 80px;
}

.process-head h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: none !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .process-head h2 {
    font-size: 2rem;
  }
}

/* VERTICAL ALTERNATING TIMELINE LAYOUT */
.vertical-timeline-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}

/* CENTRAL VERTICAL AXIS */
.vertical-timeline-axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(161, 133, 47, 0.2);
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
}

.vertical-axis-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--gold-primary) 0%,
    #d4af37 50%,
    var(--gold-primary) 100%
  );
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.2s var(--ease-out-expo);
  box-shadow: 0 0 12px rgba(161, 133, 47, 0.6);
}

.vertical-timeline-container.active-in-view .vertical-axis-fill {
  transform: scaleY(1);
}

.vertical-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  z-index: 2;
  width: 100%;
}

.vertical-timeline-item:last-child {
  margin-bottom: 0;
}

.vertical-timeline-item.item-left {
  justify-content: flex-start;
}

.vertical-timeline-item.item-right {
  justify-content: flex-end;
}

/* CENTERED TIMELINE NODE MARKER */
.vertical-timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(161, 133, 47, 0.2);
  transition: all 0.4s ease;
  z-index: 3;
}

.vertical-timeline-node span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  transition: color 0.35s ease;
}

.vertical-timeline-item:hover .vertical-timeline-node {
  background: var(--gold-primary);
  box-shadow: 0 14px 32px rgba(161, 133, 47, 0.4);
  transform: translateX(-50%) scale(1.1);
}

.vertical-timeline-item:hover .vertical-timeline-node span {
  color: #ffffff;
}

/* TIMELINE CONTENT CARD */
.vertical-timeline-content {
  width: 44%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 40px 36px;
  border-radius: 0 !important;
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s var(--ease-out-expo);
}

.item-left .vertical-timeline-content {
  text-align: right;
}

.item-right .vertical-timeline-content {
  text-align: left;
}

.vertical-timeline-item:hover .vertical-timeline-content {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(161, 133, 47, 0.14);
}

.vertical-step-index {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vertical-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-transform: none !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.vertical-timeline-content p {
  font-family: var(--font-sans);
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 400;
}

/* RESPONSIVE LAYOUT FOR MOBILE (< 992px) - EVERYTHING CENTERED */
@media (max-width: 992px) {
  .vertical-timeline-container {
    padding: 0;
  }

  .vertical-timeline-axis {
    left: 50%;
  }

  .vertical-timeline-item {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 50px !important;
    text-align: center !important;
  }

  .vertical-timeline-node {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 20px !important;
  }

  .vertical-timeline-item:hover .vertical-timeline-node {
    transform: scale(1.1) !important;
  }

  .vertical-timeline-content {
    width: 100% !important;
    max-width: 540px !important;
    text-align: center !important;
    padding: 32px 24px !important;
  }

  .item-left .vertical-timeline-content,
  .item-right .vertical-timeline-content {
    text-align: center !important;
  }
}

/* ==========================================================================
   5. GALLERY & RESIDENCES (EXPANDED PORTFOLIO)
   ========================================================================== */
.residences-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.residences-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 24px;
}

.residences-head h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--text-dark);
  text-transform: none !important;
  letter-spacing: -0.02em;
}

.residences-head .btn-editorial {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .residences-head h2 {
    font-size: 2rem;
  }
}

.residences-grid-expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.residence-card-large {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .residences-grid-expanded {
    grid-template-columns: 1fr;
  }
  .residence-card-large {
    grid-column: span 1;
  }
}

.residence-card {
  position: relative;
  height: 480px;
  border-radius: 0 !important; /* SQUARE RESIDENCE CARDS */
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  opacity: 1 !important;
  visibility: visible !important;
}

.residence-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}

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

.residence-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(17, 19, 23, 0.92) 100%
  );
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.residence-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(161, 133, 47, 0.85);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-radius: 0 !important;
}

.residence-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: none !important;
  letter-spacing: -0.01em;
}

.residence-overlay p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
}

.residence-card {
  cursor: pointer;
}

.residence-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.residence-card:hover .residence-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* FULLSCREEN MODAL - PADRÃO AURUM (100% TELA CHEIA) */
.fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.fullscreen-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.fullscreen-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fullscreen-modal.active .fullscreen-modal-backdrop {
  opacity: 1;
}

.fullscreen-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* FADE-OUT RÁPIDO DOS ITENS / FADE-IN EM CASCATA AO ABRIR */
.fullscreen-modal-media,
.fullscreen-modal-info > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fullscreen-modal.active .fullscreen-modal-media {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease 0.45s,
    transform 0.4s ease 0.45s;
}

.fullscreen-modal.active .fullscreen-modal-info > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.fullscreen-modal.active .fullscreen-modal-info > .tag-architectural {
  transition-delay: 0.45s;
}
.fullscreen-modal.active .fullscreen-modal-info > h2 {
  transition-delay: 0.5s;
}
.fullscreen-modal.active .fullscreen-modal-info > .fullscreen-modal-lead {
  transition-delay: 0.55s;
}
.fullscreen-modal.active .fullscreen-modal-info > .fullscreen-modal-divider {
  transition-delay: 0.6s;
}
.fullscreen-modal.active
  .fullscreen-modal-info
  > .fullscreen-modal-detail-text {
  transition-delay: 0.65s;
}
.fullscreen-modal.active .fullscreen-modal-info > .fullscreen-modal-actions {
  transition-delay: 0.7s;
}
.fullscreen-modal.active .fullscreen-modal-info > .fullscreen-modal-close {
  transition-delay: 0.75s;
}

/* BOTÃO FECHAR ESTILIZADO NO TOPO DIREITO DA TELA/CONTAINER */
.fullscreen-modal-close {
  position: absolute !important;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-primary);
  width: 50px !important;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.35s ease;
  padding: 0;
}
.fullscreen-modal-close .mgc_close_line {
  margin-right: -2px;
}

.fullscreen-modal-close span {
  display: none;
}

.fullscreen-modal-close:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 6px 18px rgba(161, 133, 47, 0.25);
}

.fullscreen-modal-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  min-height: 100vh;
}

@media (max-width: 992px) {
  .fullscreen-modal-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.fullscreen-modal-media {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: #0d0e11;
}

@media (max-width: 992px) {
  .fullscreen-modal-media {
    height: 50vh;
  }
}

.modal-slider-viewport {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modal-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.modal-slide-item {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.modal-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-slider-controls {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  background: rgba(17, 19, 23, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border: 1px solid rgba(161, 133, 47, 0.35);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-slider-controls.hidden {
  display: none !important;
}

.modal-slider-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.modal-slider-btn:hover {
  color: var(--gold-light);
  transform: scale(1.12);
}

.modal-slider-counter {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  padding: 0 4px;
  user-select: none;
}

.modal-slider-dots {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.modal-slider-dots.hidden {
  display: none !important;
}

.modal-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.modal-slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.modal-slider-dot.active {
  background: var(--gold-light);
  width: 26px;
  border-radius: 13px;
  box-shadow: 0 0 10px rgba(161, 133, 47, 0.6);
}

@media (max-width: 768px) {
  .modal-slider-controls {
    bottom: 14px;
    left: 14px;
    padding: 4px 10px;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }

  .modal-slider-btn {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }

  .modal-slider-counter {
    font-size: 0.72rem;
    padding: 0 2px;
  }

  .modal-slider-dots {
    bottom: 14px;
    right: 14px;
    gap: 5px;
  }

  .modal-slider-dot {
    width: 6px;
    height: 6px;
  }

  .modal-slider-dot.active {
    width: 16px;
    border-radius: 8px;
  }
}

.fullscreen-modal-info {
  position: relative;
  padding: 80px 64px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-card);
  overflow-y: auto;
}

.fullscreen-modal-info .tag-architectural {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 12px;
  gap: 10px;
  width: auto;
}

.fullscreen-modal-info .tag-architectural::before {
  display: none !important;
}

.fullscreen-modal-info .tag-architectural::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background-color: var(--gold-primary);
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .fullscreen-modal-info {
    padding: 70px 24px 36px 24px;
  }
}

.fullscreen-modal-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-top: 6px;
  margin-bottom: 16px;
  text-transform: none !important;
  letter-spacing: -0.02em;
  text-align: left;
}

@media (max-width: 768px) {
  .fullscreen-modal-info h2 {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }
}

.fullscreen-modal-lead {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-primary);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .fullscreen-modal-lead {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.fullscreen-modal-divider {
  width: 64px;
  height: 2px;
  background: var(--gold-primary);
  margin: 24px 0;
  align-self: flex-start;
}

.fullscreen-modal-detail-text {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 36px;
  text-align: left;
}

@media (max-width: 768px) {
  .fullscreen-modal-detail-text {
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
}

.fullscreen-modal-actions {
  margin-top: auto;
  align-self: flex-start;
  width: 100%;
}

.testimonials-section {
  background-color: var(--bg-white);
  transition: background 0.4s ease;
}

/* BRAND LUXURY DARK BRONZE-BROWN THEME FOR TESTIMONIALS */
.testimonials-section-brand {
  background-color: #1c1810 !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.testimonials-section-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
}

.tag-gold-contrast {
  color: var(--gold-light) !important;
  border-color: rgba(197, 169, 77, 0.4) !important;
}

.testimonials-title-brand {
  color: #ffffff !important;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: none !important;
  font-weight: 800;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.1rem;
  }
}

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

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

.testimonial-card-editorial {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 44px 36px;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition:
    border-color 0.4s ease,
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonial-card-brand {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(161, 133, 47, 0.3) !important;
  backdrop-filter: blur(8px);
}

.testimonial-card-brand:hover {
  border-color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(161, 133, 47, 0.2);
}

.testimonial-stars-gold {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.testimonial-quote-text {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-card-brand .testimonial-quote-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: none !important;
  letter-spacing: -0.01em;
}

.testimonial-card-brand .testimonial-author-info strong {
  color: #ffffff !important;
}

.testimonial-author-info span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.testimonial-card-brand .testimonial-author-info span {
  color: var(--gold-light) !important;
}

/* ==========================================================================
   7. MINIMALIST FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.faq-title-main {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 70px;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

.faq-block {
  border-bottom: 1px solid var(--border-light);
}

.faq-btn {
  width: 100%;
  padding: 32px 0;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: inherit;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: none !important;
  letter-spacing: -0.01em;
}

.faq-btn:hover {
  color: var(--gold-primary);
}

.faq-plus-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-block.active .faq-plus-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease-out-expo),
    padding 0.5s var(--ease-out-expo);
}

.faq-block.active .faq-content {
  max-height: 300px;
  padding-bottom: 32px;
}

.faq-content p {
  font-family: var(--font-sans);
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 400;
}

/* ==========================================================================
   8. FINAL MONUMENTAL CTA
   ========================================================================== */
/* ==========================================================================
   8. FINAL CONTACT SECTION (2-COLUMN & ARCHITECTURAL FORM)
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
  border-top: 1px solid var(--border-light);
}

.final-cta-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .final-cta-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.final-cta-info {
  text-align: left;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .final-cta-heading {
    font-size: 2rem;
  }
}

.final-cta-subtext {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 400;
}

.direct-contact-badges {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.contact-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-badge-item i {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-top: 3px;
}

.contact-badge-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-badge-item span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ARCHITECTURAL FORM STYLES */
.final-cta-form-wrap {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 44px 40px;
  border-radius: 0 !important; /* SQUARE FORM CONTAINER */
  box-shadow: var(--shadow-subtle);
}

@media (max-width: 576px) {
  .final-cta-form-wrap {
    padding: 30px 20px;
  }
}

.aurum-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  text-align: left;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 0 !important; /* SQUARE INPUTS */
  outline: none;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0a5b1;
  font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(161, 133, 47, 0.12);
}

/* CUSTOM STYLED VALIDATION ERROR STATES (NO BROWSER BALLOONS) */
.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: #c0392b !important;
  background-color: rgba(192, 57, 43, 0.03);
}

.form-error-msg {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 500;
  margin-top: 2px;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.btn-form-submit {
  width: 100%;
  padding: 20px 32px;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* SUCCESS MESSAGE BOX */
.form-success-box {
  display: none;
  align-items: center;
  gap: 16px;
  background-color: rgba(161, 133, 47, 0.08);
  border: 1px solid var(--gold-primary);
  padding: 20px 24px;
  border-radius: 0 !important;
  margin-top: 16px;
  text-align: left;
}

.form-success-box.visible {
  display: flex;
}

.form-success-box i {
  font-size: 2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.form-success-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.form-success-box p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
  margin-top: 2px;
}

/* ERROR MESSAGE BOX */
.form-error-box {
  display: none;
  align-items: center;
  gap: 16px;
  background-color: rgba(192, 57, 43, 0.06);
  border: 1px solid #c0392b;
  padding: 20px 24px;
  border-radius: 0 !important;
  margin-top: 16px;
  text-align: left;
}

.form-error-box.visible {
  display: flex;
}

.form-error-box i {
  font-size: 2rem;
  color: #c0392b;
  flex-shrink: 0;
}

.form-error-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #c0392b;
}

.form-error-box p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
  margin-top: 2px;
}

/* Button Loading / Submitting State */
.btn-form-submit.submitting {
  opacity: 0.8;
  cursor: not-allowed !important;
  pointer-events: none;
}

@keyframes btnSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-spinning-icon {
  display: inline-block;
  animation: btnSpin 0.9s linear infinite;
}

/* ==========================================================================
   HIGH-END RICH GOLD FOOTER WITH SQUARE ELEMENTS
   ========================================================================== */
.footer-gold {
  background: linear-gradient(135deg, #8c7226 0%, #a1852f 50%, #766020 100%);
  background-size: 200% 200%;
  animation: goldGradientFlow 12s ease infinite;
  color: #ffffff;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@keyframes goldGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.architectural-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-line-h {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
  will-change: transform;
}

.h-line-1 {
  top: 25%;
}
.h-line-2 {
  top: 75%;
}

.grid-line-v {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  will-change: transform;
}

.v-line-1 {
  left: 28%;
}
.v-line-2 {
  left: 72%;
}

.grid-diamond-box {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  pointer-events: none;
  will-change: transform, opacity;
}

.diamond-1 {
  width: 240px;
  height: 240px;
  top: -50px;
  right: 8%;
}

.diamond-2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 12%;
}

.footer-gold .container {
  position: relative;
  z-index: 2;
}

.footer-grid-rich {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }
}

.footer-gold-logo {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-links a {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none !important;
  transition:
    transform 0.3s var(--ease-out-expo),
    color 0.3s ease;
  will-change: transform;
}

.footer-social-links a:hover {
  background: transparent !important;
  color: #ffffff;
  transform: scale(1.18);
  text-decoration: none !important;
}

.footer-col h4 {
  font-family: var(--font-fraunces);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: none !important;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #ffffff;
  text-decoration: none !important;
}

.footer-locations {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-locations li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-locations i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.btn-footer-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background-color: #ffffff;
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 !important; /* SQUARE FOOTER BUTTON */
  text-decoration: none;
  transition:
    transform 0.3s var(--ease-out-expo),
    background-color 0.3s ease,
    color 0.3s ease;
  box-shadow: none !important;
  will-change: transform;
}

.btn-footer-white:hover {
  background-color: var(--bg-surface);
  color: var(--text-dark);
  transform: none !important;
}

.btn-footer-white:active {
  transform: none !important;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
  gap: 20px;
}

/* Created By Signature Styling */
.created-by-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.created-by-link:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.created-by-link img {
  height: 24px;
  width: auto;
  display: block;
}

/* ==========================================================================
   MASTER RESPONSIVE BREAKPOINTS (TABLETS, MOBILES & SMALL SCREENS)
   ========================================================================== */

/* 1. LARGE TABLETS & SMALL LAPTOPS (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-giant-title {
    font-size: 9.5rem;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 9rem;
  }
  .pains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .process-grid {
    gap: 24px;
  }
  .residences-grid,
  .testimonials-grid {
    gap: 28px;
  }
  .final-cta-container {
    gap: 50px;
  }
}

/* 2. TABLETS & PORTRAIT IPADS (max-width: 992px) */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .nav-gooey-wrapper {
    display: none !important;
  }
  .menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-elyse-exact {
    min-height: 100vh;
    height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-bg-wrap img {
    opacity: 0.48 !important; /* INCREASED PHOTO OPACITY AS REQUESTED */
    filter: brightness(0.9) contrast(1.05) !important;
  }
  .hero-dark-overlay {
    background: linear-gradient(
      180deg,
      rgba(248, 247, 244, 0.78) 0%,
      rgba(248, 247, 244, 0.45) 50%,
      rgba(248, 247, 244, 0.92) 100%
    );
  }
  .hero-exact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-giant-title {
    font-size: 6.8rem;
    line-height: 0.88;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 6.2rem;
  }
  .hero-info-side {
    padding-left: 0;
    margin-top: 10px;
  }
  .manifesto-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .residences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .final-cta-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .section-padding {
    padding: 100px 0;
  }
}

/* 3. SMARTPHONES & SMALL TABLETS (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .hero-giant-title {
    font-size: 5.8rem;
    line-height: 0.88;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 5.4rem;
  }
  .hero-subhead-italic {
    font-size: 1.45rem;
    margin-bottom: 18px;
  }
  .hero-lead-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .pains-head h2,
  .manifesto-quote-title,
  .residences-head h2,
  .testimonials-title,
  .final-cta-heading,
  .faq-title-main {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .pains-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .residences-grid,
  .residences-grid-expanded {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .residences-grid-expanded .residence-card,
  .residence-card {
    height: 390px;
  }
  .residence-overlay {
    padding: 24px 20px;
    justify-content: flex-end;
    text-align: left;
  }
  .residence-tag {
    align-self: flex-start;
    text-align: left;
    margin-bottom: 8px;
    font-size: 0.7rem;
  }
  .residences-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .residences-head .btn-editorial {
    width: 100%;
    margin-bottom: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
}

/* 4. COMPACT MOBILE SCREENS (max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }
  .hero-giant-title {
    font-size: 4.8rem;
    letter-spacing: -0.03em;
    line-height: 0.88;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 4.4rem;
    margin-left: -7px;
  }
  .btn-editorial {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.75rem;
    text-align: center;
  }
  .final-cta-form-wrap {
    padding: 26px 18px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  .contact-badge-item {
    gap: 14px;
  }
  .contact-badge-item i {
    font-size: 1.4rem;
  }
  .section-padding {
    padding: 60px 0;
  }
}

/* 5. ULTRA-SMALL MOBILE SCREENS (max-width: 380px) */
@media (max-width: 380px) {
  .hero-giant-title {
    font-size: 3.8rem;
    line-height: 0.88;
  }
  .hero-giant-title .gold-sub-title {
    font-size: 3.5rem;
  }
  .pains-head h2,
  .manifesto-quote-title,
  .residences-head h2,
  .testimonials-title,
  .final-cta-heading,
  .faq-title-main {
    font-size: 1.8rem;
  }
  .btn-editorial {
    padding: 14px 16px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   FLOATING FIXED WHATSAPP BUTTON (BOTTOM RIGHT)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s var(--ease-out-expo),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-float-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.whatsapp-float-btn.visible:hover {
  transform: scale(1.1) translateY(-4px);
  background-color: #20ba5a;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

/* Floating Tooltip Tag */
.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--text-dark);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--text-dark);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.65rem;
  }
  .whatsapp-float-tooltip {
    display: none !important;
  }
}

/* ==========================================================================
   0. LUXURY ARCHITECTURAL INTRO LOADER (ENTRADA COM LOGO)
   ========================================================================== */
.site-intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background-color: #fcfbfa;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-intro-loader.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.intro-grid-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(161, 133, 47, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(161, 133, 47, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.intro-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.intro-logo-box {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* FAVICON MONOGRAM SVG */
.intro-favicon-svg {
  width: 104px;
  height: 104px;
  margin: 0;
  overflow: visible;
  filter: drop-shadow(0 6px 18px rgba(161, 133, 47, 0.18));
}

.intro-svg-path {
  fill: #a1852f;
  fill-opacity: 0;
  stroke: var(--gold-primary);
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition:
    fill-opacity 0.6s ease,
    filter 0.6s ease,
    stroke-width 0.4s ease;
}

.intro-svg-path.filled {
  fill-opacity: 1;
  stroke-width: 0.5px;
  filter: drop-shadow(0 0 14px rgba(197, 169, 77, 0.5));
}

/* ==========================================================================
   SECTION TITLE BANNERS WITH ARCHITECTURAL BACKGROUND IMAGES (100% FULL-WIDTH BLEED)
   ========================================================================== */
.section-title-banner {
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  margin-top: -140px; /* Colado exatamente no topo da seção */
  padding-top: 100px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  /* Alinhamento milimétrico do conteúdo com a grade do container (max-width: 1440px) */
  padding-left: max(40px, calc((100vw - 1440px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1440px) / 2 + 40px));
}

.section-title-banner.banner-center,
.section-title-banner.banner-left {
  align-items: center;
  text-align: center;
}

.section-title-banner .banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%) contrast(1.12) brightness(1.02);
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
  transform: scale(1.02);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.section-title-banner:hover .banner-bg-img {
  transform: scale(1.05);
  opacity: 0.24;
}

/* Gradient overlay for seamless bottom fade into section background */
.section-title-banner .banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Specific background transitions for off-white and dark sections */
.pains-section .section-title-banner .banner-overlay,
.faq-section .section-title-banner .banner-overlay {
  background: linear-gradient(
    to bottom,
    rgba(248, 247, 244, 0.05) 0%,
    rgba(248, 247, 244, 0.5) 55%,
    var(--bg-light) 100%
  );
}

.testimonials-section-brand .section-title-banner .banner-bg-img {
  opacity: 0.24;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.testimonials-section-brand .section-title-banner:hover .banner-bg-img {
  opacity: 0.32;
}

.testimonials-section-brand .section-title-banner .banner-overlay {
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 16, 0.15) 0%,
    rgba(28, 24, 16, 0.65) 55%,
    #1c1810 100%
  );
}

.section-title-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-banner.banner-center .banner-content,
.section-title-banner.banner-left .banner-content {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.section-title-banner .tag-architectural {
  color: var(--gold-primary);
  margin-bottom: 16px;
  justify-content: center;
}

.section-title-banner .tag-architectural::before,
.section-title-banner .tag-architectural::after {
  background-color: var(--gold-primary);
}

.testimonials-section-brand .section-title-banner .tag-architectural {
  color: var(--gold-light);
  justify-content: center;
}

.testimonials-section-brand .section-title-banner .tag-architectural::before,
.testimonials-section-brand .section-title-banner .tag-architectural::after {
  background-color: var(--gold-light);
}

.section-title-banner h2 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

.testimonials-section-brand .section-title-banner h2 {
  color: #ffffff;
}

.section-title-banner p {
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
}

.testimonials-section-brand .section-title-banner p {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
  .section-title-banner {
    margin-top: -80px;
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 36px;
  }
  .section-title-banner h2 {
    font-size: 1.95rem;
  }
  .section-title-banner p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   SCHEMATIC PILLARS, BADGES & DELIVERABLES
   ========================================================================== */
.schematic-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .schematic-pillars-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.schematic-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--gold-primary);
  padding: 34px 28px;
  border-radius: 0 !important;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.schematic-pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(161, 133, 47, 0.14);
}

.schematic-pillar-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-style: normal;
  color: var(--gold-primary);
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.schematic-pillar-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schematic-pillar-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Pain vs Solution Schematic Highlight */
.pain-solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg-light);
  border: 1px solid var(--border-gold);
  padding: 8px 14px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  text-align: left;
  border-radius: 0 !important;
}

.pain-solution-badge i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Schematic Deliverable Tags inside Process */
.process-deliverable-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border-left: 2px solid var(--gold-primary);
  padding: 8px 14px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 0 !important;
}

.item-left .process-deliverable-box {
  justify-content: flex-end;
  border-left: none;
  border-right: 2px solid var(--gold-primary);
}

@media (max-width: 992px) {
  .item-left .process-deliverable-box {
    justify-content: center;
    border-right: none;
    border-left: 2px solid var(--gold-primary);
  }
}

/* ==========================================================================
   SECTION BOTTOM CTA WRAPPERS (BOTÕES CLICÁVEIS AO FINAL DE CADA EXPLICAÇÃO)
   ========================================================================== */
.section-cta-wrap {
  margin-top: 54px;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.section-cta-microtext {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.section-cta-microtext strong {
  color: var(--text-dark);
}

.testimonials-section-brand .section-cta-microtext {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section-brand .section-cta-microtext strong {
  color: #ffffff;
}
