:root {
  /* Colors */
  --verde-salvia: #8A9A86;
  --verde-salvia-dar: #6A7A66;
  --terracota: #C06C59;
  --terracota-hover: #A85A48;
  --madeira: #A17454;
  --cinza-calopsita: #F2F2EF;
  --f4-bg: #F4F4F0;
  --white: #FFFFFF;
  --text-main: #2C332D;
  --text-light: #667068;

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

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;

  /* Borders / Effects */
  --radius-sm: 8px;
  /* Slightly rounded */
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip Link Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracota);
  color: var(--white);
  padding: 1rem 2rem;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

strong {
  font-weight: 600;
  color: var(--text-main);
}

em {
  font-style: normal;
  color: var(--terracota);
  font-weight: 400;
}

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

.text-white {
  color: var(--white) !important;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--cinza-calopsita);
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn i {
  font-size: 1.4rem;
}

.btn-primary {
  background-color: var(--terracota);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(192, 108, 89, 0.3);
}

.btn-primary:hover {
  background-color: var(--terracota-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 108, 89, 0.4);
}

.btn-outline {
  border-color: var(--verde-salvia);
  color: var(--verde-salvia);
}

.btn-outline:hover {
  background-color: var(--verde-salvia);
  color: var(--white);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

/* Glassmorphism Floating Navbar */
.navbar-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 2rem;
  z-index: 1000;
  transition: padding 0.4s ease;
}

.navbar-wrapper.scrolled {
  position: fixed;
  padding-top: 1rem;
}

.navbar-glass {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0.8rem 0.6rem 2rem;
  /* Asymmetrical for button placement */
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.4s ease;
}

.navbar-wrapper.scrolled .navbar-glass {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.brand-link {
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.brand-link:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-logo {
  height: 42px;
  width: auto;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--verde-salvia-dar);
  letter-spacing: 3px;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  /* Adjusted for more items while keeping elegance */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-main);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--terracota);
  transition: width 0.3s ease;
}

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

.btn-nav-rent {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--terracota);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(192, 108, 89, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-nav-rent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(192, 108, 89, 0.35);
  color: var(--white);
}

.rent-pulse {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.rent-pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: pulse-status 2s infinite;
}

/* Immersive Hero Section */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--f4-bg);
  overflow: hidden;
  padding-top: 8rem;
  /* Avoid dispute with the top navbar */
}

.hero-layer-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
}

.hero-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 6rem;
  box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.06);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, var(--f4-bg) 0%, rgba(244, 244, 240, 0) 100%);
  z-index: 2;
  border-bottom-left-radius: 6rem;
}

.hero-layer-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-floating-card {
  width: 90%;
  max-width: 600px;
  /* Mais contido */
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 3.5rem 3.5rem;
  /* Menos preenchimento pra encaixar */
  border-radius: 20px 60px 20px 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: slideUp 1.2s ease-out forwards;
}

.badge-text {
  display: block;
  margin-bottom: 1rem;
  color: var(--terracota);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-floating-card.editorial-premium {
  padding: 4.5rem 4rem;
  border-radius: 20px 60px 20px 20px;
  /* Alinhado ao estilo Modern Organic do site */
  border-left: 4px solid var(--terracota);
  /* Anchor visual à esquerda */
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  max-width: 620px;
}

/* Marca d'água de luxo */
.hero-floating-card.editorial-premium::before {
  content: 'LUMOS';
  position: absolute;
  top: -20px;
  right: -30px;
  font-family: var(--font-heading);
  font-size: 11rem;
  font-weight: 700;
  color: rgba(214, 110, 85, 0.025);
  writing-mode: vertical-rl;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -5px;
}

.hero-floating-card.editorial-premium>* {
  position: relative;
  z-index: 1;
}

.editorial-topline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.editorial-dot {
  width: 6px;
  height: 6px;
  background-color: var(--terracota);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(214, 110, 85, 0.15);
}

.editorial-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
}

.editorial-header {
  margin-bottom: 2.5rem;
}

.hero-title-main {
  margin: 0;
  line-height: 1.1;
}

.title-pre {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.title-primary {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--verde-salvia-dar);
  letter-spacing: -2px;
}

.editorial-quote {
  padding-left: 1.5rem;
  border-left: 2px solid var(--terracota);
  margin-top: 2rem;
}

.editorial-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracota);
  margin: 0;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 3rem;
  letter-spacing: 0.2px;
}


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

.btn-hero {
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  box-shadow: 0 10px 25px rgba(162, 85, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(162, 85, 70, 0.25);
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.btn-text:hover {
  color: var(--terracota);
  gap: 0.75rem;
}

/* Sections General */
section {
  padding: var(--sp-xl) 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--terracota);
  margin: 1.5rem 0;
}

.lead-text {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

/* Concept Section (Editorial) */
.concept {
  background-color: var(--white);
  padding: 8rem 0;
  overflow: hidden;
}

.container-concept {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.concept-content {
  flex: 1;
}

.concept-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.concept-title em {
  font-family: var(--font-heading);
  color: var(--terracota);
  font-style: normal;
  display: block;
}

.concept-lead {
  font-size: 1.3rem;
  color: var(--verde-salvia-dar);
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-family: var(--font-heading);
}

.concept-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-left: 2px solid rgba(0, 0, 0, 0.05);
  padding-left: 2rem;
}

.text-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.text-block p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.concept-visual {
  flex: 1;
  position: relative;
}

.concept-visual .img-main {
  width: 100%;
  border-radius: 20px 120px 20px 20px;
  box-shadow: var(--shadow-md);
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.concept-visual:hover .img-main {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  bottom: 50px;
  left: -50px;
  background-color: var(--cinza-calopsita);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 4px solid var(--white);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.floating-badge i {
  font-size: 2.5rem;
  color: var(--terracota);
}

.floating-badge span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.split-layout.reverse .split-text {
  order: 2;
}

.split-layout.reverse .split-image-wrapper {
  order: 1;
}

.split-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.split-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-image {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-image-wrapper:hover .split-image {
  transform: scale(1.05);
}

/* Collage for Condo */
/* Premium Condo Section */
.condo {
  background-color: var(--f4-bg);
  padding: 8rem 0;
  overflow: hidden;
}

.condo-wrapper {
  display: flex;
  align-items: center;
  gap: 8rem;
}

/* Artistic Left Gallery */
.condo-gallery {
  flex: 1;
  position: relative;
  height: 650px;
}

.gallery-shape {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 80%;
  height: 90%;
  background-color: rgba(138, 154, 134, 0.2);
  /* Verde Sálvia super leve */
  border-radius: 40px 150px 40px 40px;
  z-index: 0;
}

.cg-main {
  position: absolute;
  top: 5%;
  right: 0;
  width: 85%;
  height: 80%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  z-index: 1;
  transition: transform 0.6s ease;
}

.cg-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 45%;
  object-fit: cover;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
}

.arch-border {
  border: 12px solid var(--f4-bg);
  border-radius: 200px 200px 16px 16px;
  /* Borda Superior em Arco */
}

.condo-gallery:hover .cg-main {
  transform: scale(1.02) translateX(-10px);
}

.condo-gallery:hover .cg-float {
  transform: scale(1.03) translateY(-10px);
}

.condo-glass-badge {
  position: absolute;
  right: -30px;
  bottom: 25%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: float 5s ease-in-out infinite reverse;
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* Info Side */
.condo-info {
  flex: 1;
}

.condo-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.condo-title em {
  font-family: var(--font-heading);
  color: var(--terracota);
  font-style: normal;
}

.condo-lead {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Feature List */
.condo-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.c-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(138, 154, 134, 0.4);
}

.cf-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(138, 154, 134, 0.15);
  /* Verde Sálvia claro */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-icon i {
  font-size: 1.5rem;
  color: var(--verde-salvia-dar);
}

.cf-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.cf-text span {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  display: block;
}

.highlight-feature {
  background-color: var(--verde-salvia);
  border: none;
}

.highlight-feature .cf-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.highlight-feature .cf-icon i {
  color: var(--white);
}

.highlight-feature .cf-text strong,
.highlight-feature .cf-text span {
  color: var(--white);
}

/* Bento Amenities Grid */
.bento-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
  margin-top: 4rem;
}

.bento-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-tall {
  grid-row: span 2;
}

.card-tall .bento-content h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.bento-wide {
  grid-column: span 2;
  justify-content: center;
}

.bento-wide .bento-content {
  width: 65%;
  z-index: 2;
}

.bento-icon-large {
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 1;
}

.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(161, 116, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-icon i {
  font-size: 1.8rem;
  color: var(--madeira);
}

.bento-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.bg-salvia {
  background-color: var(--verde-salvia);
  border: none;
}

.bg-salvia h3,
.bg-salvia p {
  color: var(--white);
}

.bg-f4 {
  background-color: var(--f4-bg);
  border: none;
}

.card-img {
  padding: 0;
  border: none;
}

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

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

/* Location (Organic) */
.location {
  background-color: var(--white);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.organic-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.organic-text {
  flex: 1;
  max-width: 500px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
}

.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  width: 60px;
  height: 1px;
  background-color: var(--terracota);
}

.organic-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.organic-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.organic-metrics {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.metric-arch {
  width: 170px;
  height: 320px;
  border-radius: 120px 120px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  position: relative;
}

.metric-arch:hover {
  transform: translateY(-15px) !important;
  box-shadow: var(--shadow-hover);
  z-index: 10 !important;
}

.arch-1 {
  background-color: var(--verde-salvia);
  color: var(--white);
  transform: translateY(-40px);
  z-index: 3;
}

.arch-2 {
  background-color: var(--f4-bg);
  color: var(--text-main);
  margin-left: -40px;
  transform: translateY(30px);
  z-index: 2;
  border: 5px solid var(--white);
}

.arch-3 {
  background-color: var(--terracota);
  color: var(--white);
  margin-left: -40px;
  transform: translateY(-15px);
  z-index: 1;
  border: 5px solid var(--white);
}

.arch-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.m-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.m-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .organic-location {
    flex-direction: column;
    text-align: center;
    gap: 6rem;
  }

  .section-tag::after {
    display: none;
  }

  .organic-text {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .organic-metrics {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .metric-arch {
    margin-left: 0;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    height: 110px;
    border-radius: 16px;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    padding: 0 2rem;
    border: none;
  }

  .arch-icon {
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  .m-lbl {
    text-align: left;
  }

  .m-val {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .metric-arch:hover {
    transform: scale(1.02) !important;
  }
}

/* CTA Section */
/* CTA Section Editorial */
.final-cta-editorial {
  padding: var(--sp-xl) 0;
  background-color: var(--verde-salvia);
  /* Background "anchor" em Sage Green */
  position: relative;
  overflow: hidden;
}

.final-cta-editorial::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--white);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.cta-image-side {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.cta-img-living {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

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

.cta-over-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pulse-simple {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  position: relative;
}

.pulse-simple::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4CAF50;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.cta-text-side {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-tag {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.5rem;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.cta-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--verde-salvia-dar);
}

.cta-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 90%;
}

.btn-cta-final {
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 15px 30px rgba(162, 85, 70, 0.3);
}

.cta-actions-wrap {
  margin-bottom: 3rem;
}

.cta-trust-indicators {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--verde-salvia);
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Final CTA Mobile */
@media (max-width: 1024px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-text-side {
    padding: 3rem 2rem;
  }

  .cta-headline {
    font-size: 2.8rem;
  }

  .cta-image-side {
    min-height: 300px;
  }
}

/* Private Tour (The Spaces) */
.spaces {
  padding: var(--sp-xl) 0;
  background-color: var(--white);
}

.spaces-header {
  margin-bottom: 4rem;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1.5rem;
  padding: 0 5%;
}

.space-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

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

/* Specific Positions for Artistic Staggering */
.area-sala {
  grid-column: span 2;
  grid-row: span 2;
}

.area-cozinha {
  grid-column: span 1;
  grid-row: span 1;
}

.area-quarto {
  grid-column: span 1;
  grid-row: span 1;
}

.area-office {
  grid-column: span 1;
  grid-row: span 1;
}

.area-banheiro {
  grid-column: span 1;
  grid-row: span 1;
}

.space-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: all 0.4s ease;
  z-index: 2;
}

.space-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.space-detail {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

.space-item:hover .space-img {
  transform: scale(1.08);
}

.space-item:hover .space-label {
  background: var(--white);
  color: var(--text-main);
  transform: translateY(-5px);
}

/* Spaces Mobile */
@media (max-width: 1024px) {
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .space-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 300px;
  }
}

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

/* Special Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.cta-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 108, 89, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(192, 108, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 108, 89, 0);
  }
}

.btn-video-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: var(--f4-bg);
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-video-tour:hover {
  background: var(--cinza-calopsita);
  transform: translateY(-3px);
  color: var(--terracota);
}

/* Footer */
/* Footer Editorial */
/* Footer Card Refactor (Inspired by ClickSign) */
.footer-editorial {
  background-color: var(--f4-bg);
  /* Base background for the section */
  padding: 6rem 0 0;
  position: relative;
}

.footer-card {
  background-color: var(--white);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 5rem 6rem;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.03);
}

.footer-brand-header {
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  transition: var(--transition);
}

.footer-brand-header:hover {
  transform: scale(1.05);
}

.f-logo-img {
  height: 65px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 0;
}

.f-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--terracota);
  /* Accent color like the reference */
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  border: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 1.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tour-link i {
  color: #FF0000;
  /* YouTube Red for quick recognition */
  font-size: 1.2rem;
}

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

.f-links a:hover {
  color: var(--text-main);
  padding-left: 0;
}

/* Social & Credits Column */
.f-social-col {
  display: flex;
  flex-direction: column;
}

.f-social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.f-social-icons a {
  width: 36px;
  height: 36px;
  background-color: var(--terracota);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.f-social-icons a:hover {
  transform: translateY(-3px);
  background-color: var(--terracota-hover);
}

.f-credits-wrap {
  margin-top: auto;
  text-align: left;
  /* Aligned with the other column items for better balance */
}

.f-copy {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.f-address-minimal {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Footer Mobile Refactor */
@media (max-width: 1024px) {
  .footer-card {
    padding: 4rem 3rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

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

  .f-credits-wrap {
    text-align: left;
    margin-top: 3rem;
  }
}

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

  .footer-brand-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .f-social-icons {
    justify-content: center;
  }
}

/* Floating Action Button */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background-color: var(--terracota);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
  background-color: var(--terracota-hover);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layer-image {
    width: 100%;
  }

  .hero-img-full {
    border-bottom-left-radius: 0;
  }

  .hero-gradient-overlay {
    width: 100%;
    background: rgba(244, 244, 240, 0.4);
    border-bottom-left-radius: 0;
  }

  .hero-floating-card {
    padding: 3.5rem 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .split-layout,
  .split-layout.reverse {
    gap: 3rem;
  }

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

  .card-tall {
    grid-row: span 1;
    grid-column: span 2;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .location-metrics {
    gap: 3rem;
  }

  .organic-location {
    flex-direction: column;
    text-align: center;
    gap: 6rem;
  }

  .section-tag::after {
    display: none;
  }

  .organic-text {
    max-width: 800px;
    margin: 0 auto;
  }

  .container-concept {
    flex-direction: column;
    gap: 4rem;
  }

  .floating-badge {
    left: 20px;
    bottom: 20px;
  }

  .concept-visual .img-main {
    height: 500px;
    border-radius: 20px 60px 20px 20px;
  }

  .condo-wrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .condo-gallery {
    width: 100%;
    height: 500px;
  }

  .condo-glass-badge {
    right: 20px;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding-top: 1rem;
  }

  .navbar-glass {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  /* Hide middle links on smaller screens */
  .brand {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  .nav-logo {
    height: 30px;
  }

  .btn-nav-rent {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-immersive {
    padding-top: 0;
    flex-direction: column;
    height: auto;
    min-height: auto;
    align-items: center;
  }

  .hero-layer-image {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 350px;
    top: 0;
    right: 0;
    border-bottom-left-radius: 0;
  }

  .hero-img-full {
    border-bottom-left-radius: 40px;
    /* Borda arredondada só na imagem no mobile */
  }

  .hero-layer-content {
    width: 100%;
    padding: 0 1.5rem;
    margin-top: -60px;
    /* Efeito de sobreposição elegante */
    z-index: 10;
  }

  .hero-floating-card.editorial-premium {
    padding: 2.5rem 1.5rem;
    border-radius: 16px 40px 16px 16px;
    /* Bordas arredondadas no mobile também */
    border-left: none;
    border-top: 4px solid var(--terracota);
    max-width: 100%;
    margin: -60px auto 0;
  }

  .title-primary {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .title-pre {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .editorial-quote p {
    font-size: 1.3rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-text {
    order: 1;
  }

  .split-layout.reverse .split-image-wrapper {
    order: 2;
  }

  .section-title,
  .condo-title {
    font-size: 2.8rem;
  }

  .bento-amenities {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, auto);
  }

  .card-tall,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-wide .bento-content {
    width: 100%;
  }

  .bento-icon-large {
    font-size: 10rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .location-metrics {
    flex-direction: column;
    gap: 2.5rem;
  }

  .split-image {
    height: 400px;
  }

  .organic-metrics {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .metric-arch {
    margin-left: 0;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    height: 110px;
    border-radius: 16px;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    padding: 0 2rem;
    border: none;
  }

  .arch-icon {
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  .m-lbl {
    text-align: left;
  }

  .m-val {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .metric-arch:hover {
    transform: scale(1.02) !important;
  }

  .concept-title {
    font-size: 2.8rem;
  }

  .concept-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .concept-visual .img-main {
    height: 350px;
  }

  .floating-badge {
    padding: 1rem 1.5rem;
    left: 10px;
    bottom: 10px;
  }

  .floating-badge i {
    font-size: 1.8rem;
  }

  .floating-badge span {
    font-size: 0.95rem;
  }

  .concept-text-grid {
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .condo-gallery {
    height: 400px;
    margin-bottom: 2rem;
  }

  .cg-main {
    width: 90%;
    height: 75%;
  }

  .cg-float {
    width: 65%;
    height: 50%;
  }

  .arch-border {
    border-width: 8px;
  }

  .c-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
}