/* =============================================================
   SUNSET INTERLAGOS - ARBÓREA IMÓVEIS LUXURY REAL ESTATE THEME
   Palette: Deep Royal Navy (#060B17, #0A1224) & Brushed Gold (#D4AF37)
============================================================= */

:root {
  --bg-darkest: #050811;
  --bg-navy-main: #070D18;
  --bg-navy-card: #0D1629;
  --bg-navy-card-hover: #121E38;
  --bg-navy-lighter: #162444;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3DE8A;
  --gold-hover: #E5C07B;
  --gold-dark: #A88624;
  --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #9B7830 100%);
  --gold-border: rgba(212, 175, 55, 0.35);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
  --gold-text-glow: 0 0 15px rgba(212, 175, 55, 0.4);

  --text-white: #FFFFFF;
  --text-pearl: #F1F5F9;
  --text-muted: #94A3B8;
  --text-gold: #ECC880;

  --accent-sunset: #E77832;
  --accent-green: #10B981;

  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-width: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-navy-main);
  color: var(--text-pearl);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary) !important; }
.text-sunset { color: var(--accent-sunset) !important; }

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, #050912 0%, #081224 50%, #050912 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-gold {
  background: var(--gold-gradient);
  color: #070D18;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mcmv-tag {
  color: var(--text-pearl);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact {
  color: var(--text-pearl);
  font-weight: 600;
  transition: var(--transition);
}
.topbar-contact:hover {
  color: var(--gold-primary);
}

/* HEADER / NAVBAR */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 13, 24, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(212, 175, 55, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* BRAND SIGNATURE */
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.arborea-emblem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.sunset-signature {
  display: flex;
  flex-direction: column;
}

.sunset-sub {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  font-weight: 700;
}

.sunset-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.sunset-loc {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-pearl);
  font-weight: 600;
}

/* NAV MENU */
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-pearl);
  position: relative;
  padding: 6px 0;
}

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

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

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #060B17;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

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

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

.pulse-btn {
  animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.hamburger-btn span {
  width: 26px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background-color: var(--bg-darkest);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050912 0%, rgba(5, 9, 18, 0.95) 45%, rgba(7, 13, 24, 0.65) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-luxury {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.tag-mcmv {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid #10B981;
}

.tag-loc {
  background: rgba(231, 120, 50, 0.15);
  color: #FB923C;
  border: 1px solid var(--accent-sunset);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.highlight-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-pearl);
  max-width: 580px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.type-pill {
  color: var(--text-pearl);
}

.type-pill.gold {
  color: var(--gold-light);
}

.type-dot {
  color: var(--gold-primary);
}

/* HERO PRICING TILES */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.price-box {
  background: rgba(13, 22, 41, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.price-box:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
}

.price-box.feature-glow {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(13, 22, 41, 0.95) 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.price-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.price-value span {
  font-size: 1.6rem;
}

.price-value.gold {
  color: var(--gold-light);
}

.price-value.green {
  color: #34D399;
  font-size: 1.15rem;
}

.price-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* HERO VISUAL FRAME */
.hero-visual {
  display: flex;
  justify-content: center;
}

.luxury-card-frame {
  position: relative;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--gold-glow);
  background: var(--bg-navy-card);
}

.hero-preview-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.luxury-card-frame:hover .hero-preview-img {
  transform: scale(1.03);
}

.luxury-card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 13, 24, 0.95), rgba(7, 13, 24, 0.7) 70%, transparent);
  padding: 30px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trina-badge-img {
  height: 24px;
  object-fit: contain;
}

.luxury-card-badge span {
  font-size: 0.74rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* SECTION HEADINGS */
.section {
  padding: 100px 0;
  position: relative;
}

.sub-header-gold {
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 22px;
}

.gold-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.gold-divider i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* SECTION PILLARS */
.section-pillars {
  background-color: #070E1A;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.pillar-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--gold-glow);
  background: var(--bg-navy-card-hover);
}

.pillar-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-metric {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 14px;
  width: 100%;
}

/* LIFESTYLE BOX */
.section-lifestyle {
  background: linear-gradient(180deg, #070E1A 0%, #091325 100%);
}

.lifestyle-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-navy-card);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lifestyle-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.lifestyle-image img {
  width: 100%;
  display: block;
}

.lifestyle-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1.25;
  color: var(--text-white);
  margin: 10px 0 18px;
}

.lifestyle-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.lifestyle-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.lifestyle-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-pearl);
}

/* PLANTAS E TIPOLOGIAS */
.section-plans {
  background-color: var(--bg-darkest);
}

.plans-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 50px;
}

.filter-btn {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-pearl);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #060B17;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.plan-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.plan-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--gold-gradient);
  color: #060B17;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.plan-media-wrapper {
  position: relative;
  height: 230px;
  background: #04070E;
  overflow: hidden;
  cursor: pointer;
}

.plan-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plan-media-wrapper:hover .plan-main-img {
  transform: scale(1.08);
}

.plan-overlay-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 24, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-media-wrapper:hover .plan-overlay-zoom {
  opacity: 1;
}

.plan-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
}

.plan-area {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

.plan-badge-sub {
  font-size: 0.8rem;
  color: var(--accent-sunset);
  font-weight: 600;
  margin-bottom: 12px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-pearl);
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.plan-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* LIGHTBOX MODAL */
.modal-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 17, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--bg-navy-card);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--gold-glow);
  text-align: center;
  animation: zoomModal 0.3s ease;
}

@keyframes zoomModal {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #FFF;
}

#modalImg {
  max-height: 70vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.modal-caption {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* DIFERENCIAIS */
.section-differentials {
  background: linear-gradient(180deg, #050811 0%, #091325 100%);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.diff-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  background: var(--bg-navy-card-hover);
}

.diff-card.highlight-gold-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(13, 22, 41, 0.95) 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.diff-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.diff-icon-circle.gold-circle {
  background: rgba(212, 175, 55, 0.2);
}

.diff-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.diff-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* LOCALIZAÇÃO */
.section-location {
  background-color: var(--bg-darkest);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}

.mobility-column {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobility-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.route-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.route-item.highlight-route {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
}

.route-time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
  min-width: 60px;
  text-align: center;
  background: rgba(7, 13, 24, 0.8);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.route-time.gold-time {
  background: var(--gold-gradient);
  color: #060B17;
  border: none;
}

.route-info {
  display: flex;
  flex-direction: column;
}

.route-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

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

.stand-visitation-card {
  background: var(--bg-navy-card);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.stand-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 6px;
}

.stand-address {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-white);
}

.stand-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  filter: contrast(1.05) saturate(1.1);
}

/* FICHA TÉCNICA */
.section-tech {
  background-color: #070E1A;
}

.tech-table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.tech-item {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.tech-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tech-info {
  display: flex;
  flex-direction: column;
}

.tech-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

/* SOBRE TRINACORP & ARBÓREA */
.section-about {
  background: linear-gradient(180deg, #070E1A 0%, #050811 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.about-card {
  background: var(--bg-navy-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 40px;
}

.arborea-card {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.about-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.trina-logo {
  height: 38px;
  object-fit: contain;
}

.arborea-logo-card {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.about-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

.gold-tag {
  color: var(--gold-light);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.about-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.val-item {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-pearl);
}

.val-item i {
  margin-top: 4px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-pearl);
  font-weight: 500;
}

/* FORMULÁRIO DE CAPTAÇÃO VIP */
.section-form {
  background-color: var(--bg-darkest);
  padding: 110px 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-white);
  line-height: 1.25;
  margin: 10px 0 16px;
}

.form-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-pearl);
  font-weight: 500;
}

.form-box {
  background: var(--bg-navy-card);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.form-box-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-pearl);
  margin-bottom: 6px;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap i {
  position: absolute;
  left: 16px;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.input-icon-wrap input,
.input-icon-wrap select {
  width: 100%;
  background: #050912;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 44px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: var(--transition);
}

.input-icon-wrap select {
  appearance: none;
  cursor: pointer;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--gold-primary);
}

.btn-submit {
  padding: 16px;
  font-size: 1rem;
}

.form-feedback {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FOOTER */
.footer {
  background-color: #03060C;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 80px 0 30px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
}

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

.f-arborea {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.f-slogan {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-bio {
  margin-top: 18px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-logos-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.partner-logo {
  height: 32px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #64748B;
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
}

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

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wa-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  border: 2px solid #FFF;
  transition: var(--transition);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.floating-whatsapp:hover .wa-icon-box {
  transform: scale(1.12);
}

.wa-tooltip {
  background: var(--bg-navy-card);
  border: 1px solid var(--gold-primary);
  color: var(--text-pearl);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  animation: fadeIn 0.8s ease;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  z-index: 990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 22, 41, 0.9);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #060B17;
}

.back-to-top.show {
  display: flex;
}

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

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

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

  .hero-tags, .hero-types {
    justify-content: center;
  }

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

  .lifestyle-box {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .form-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .header {
    height: 74px;
  }

  .btn-header {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: #070D18;
    border-bottom: 2px solid var(--gold-primary);
    padding: 30px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

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

  .hero-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

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

  .tech-table-grid {
    grid-template-columns: 1fr;
  }

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

  .form-box {
    padding: 24px;
  }

  .wa-tooltip {
    display: none;
  }
}
