/* ============================================
   Connect Penha - Modern & Sophisticated
   Fontes: Document fonts (Minion Pro, Helvetica Neue)
   ============================================ */

@font-face {
  font-family: 'Minion Pro';
  src: url('fonts/MinionPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url('fonts/HelveticaNeueLTStd-Lt.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette - Light theme with warm accents */
  --color-bg: #faf8f5;
  --color-bg-elevated: #ffffff;
  --color-bg-card: #ffffff;
  --color-surface: #f5f3ef;
  
  --color-text: #2c2c2c;
  --color-text-muted: #5a5a5a;
  --color-text-subtle: #7a7a7a;
  
  --color-accent: #8b6914;
  --color-accent-hover: #a47d1a;
  --color-accent-subtle: rgba(139, 105, 20, 0.12);
  
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.12);
  
  /* Typography - Fontes da pasta Document fonts */
  --font-display: 'Minion Pro', Georgia, serif;
  --font-body: 'Helvetica Neue LT Std', Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

/* Typography */
.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.section-title--light {
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--duration) var(--ease-out);
}

.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: var(--color-accent-subtle);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: var(--color-bg-elevated);
  transition: padding var(--duration), box-shadow var(--duration);
}

.header.scrolled {
  box-shadow: 0 1px 0 var(--color-border);
  padding: var(--space-sm) 0;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  display: block;
  text-decoration: none;
}

.header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-accent);
}

.logo--light .logo span,
.logo--light span {
  color: var(--color-accent);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__list a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--duration);
}

.nav__list a:hover {
  color: var(--color-text);
}

.nav__cta {
  color: var(--color-accent) !important;
  font-weight: 500 !important;
}

.header__btn {
  display: none;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration), opacity var(--duration);
}

@media (min-width: 1024px) {
  .header__btn {
    display: inline-flex;
  }
}

@media (max-width: 1023px) {
  .header:has(.nav.open) {
    overflow: visible;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    background: #ffffff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 9999;
    padding: 80px var(--space-xl) var(--space-2xl);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav.open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    font-size: 1.375rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-shrink: 0;
  }

  .nav__list li {
    border-bottom: 1px solid #e5e5e5;
  }

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

  .nav__list a {
    display: block;
    padding: 20px 24px;
    color: #1a1a1a;
    font-weight: 600;
  }

  .nav__list a:hover {
    color: var(--color-accent);
    background: rgba(139, 105, 20, 0.06);
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1;
  }

  .nav.open ~ .menu-toggle {
    position: fixed;
    top: 20px;
    right: var(--space-lg);
    z-index: 10000;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: #1a1a1a;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__btn {
    display: inline-flex;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: calc(80px + var(--space-md)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('PHOTO-2026-03-13-15-02-38.jpg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 28%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80px + var(--space-sm)) var(--space-xl) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero__bar {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__bar--main {
  font-size: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: 2px;
}

.hero__bar--sub {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.hero__blocks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(340px, 88vw);
}

.hero__block {
  background: rgba(16, 16, 18, 0.92);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__block--valor {
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero__block-label {
  font-size: clamp(1.1rem, 3.2vw, 1.05rem);
  line-height: 1.1;
}

.hero__block-small {
  font-size: 0.9rem;
  opacity: 0.95;
  white-space: nowrap;
  align-self: auto;
  flex-shrink: 0;
}

.hero__block-small--apartir {
  margin: 4px 0 2px;
}

.hero__block-value {
  font-size: clamp(1.8rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #b8a291;
  white-space: nowrap;
}

.hero__block-title {
  font-size: clamp(1.05rem, 5vw, 2rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}

.hero__block-desc {
  font-size: clamp(0.95rem, 4vw, 1.15rem);
  opacity: 0.98;
  text-align: center;
  line-height: 1.2;
}

.hero__block--produto {
  align-items: center;
}

.hero__block-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  margin: 2px 0;
}

@media (max-width: 480px) {
  .hero__block-value {
    font-size: clamp(1.65rem, 9vw, 2.4rem);
  }
}


.hero__tag {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero__content .btn {
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(139, 105, 20, 0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   Feature Cards
   ============================================ */

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

.features-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--duration) var(--ease-out);
}

.feature-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

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

/* ============================================
   About
   ============================================ */

.about {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-elevated);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr minmax(480px, 560px);
  gap: var(--space-2xl);
  align-items: start;
}

.about__content .section-title {
  margin-bottom: var(--space-lg);
}

.about__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.about__content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.about__details {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  min-height: 320px;
  max-width: 100%;
  text-align: left;
}

.about__details-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.details-table__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--space-md) 0 var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-lg);
  text-align: left;
}

.details-table__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.details-table dt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  flex: 0 0 42%;
  max-width: 42%;
  min-width: 0;
  line-height: 1.4;
  text-align: left;
}

.details-table dd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  text-align: left;
  line-height: 1.45;
  margin: 0;
  flex: 1;
  min-width: 0;
}

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

  .about__details {
    padding: var(--space-xl);
    position: static;
  }
}

/* ============================================
   Connect
   ============================================ */

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

.connect__header {
  margin-bottom: var(--space-xl);
}

.connect__intro {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

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

.connect__block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.connect__block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.connect__block ul {
  list-style: none;
}

.connect__block li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.connect__block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Mobilidade e Proximidades na área Connect */
.connect__mobilidade {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.connect__headline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.connect__mobilidade-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: var(--space-md);
}

.connect__address {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.connect__address strong {
  color: var(--color-accent);
}

.connect__proximidades {
  margin-bottom: var(--space-2xl);
}

.connect__proximidades-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.proximidade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.proximidade-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--duration), border-color var(--duration);
}

.proximidade-card:hover {
  border-color: rgba(139, 105, 20, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.proximidade-card__header {
  background: linear-gradient(135deg, var(--color-accent-subtle), transparent);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid var(--color-accent);
}

.proximidade-card__header h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proximidade-card__list {
  list-style: none;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  margin: 0;
}

.proximidade-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.4;
}

.proximidade-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.proximidade-card__lugar {
  color: var(--color-text);
  flex: 1;
  min-width: 0;
}

.proximidade-card__dist {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.proximidade-card__dist--pe {
  color: #2d7a4f;
  font-size: 0.75rem;
}

.proximidade-footer {
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  font-style: normal;
}

/* ============================================
   Gallery / Perspectivas
   ============================================ */

.gallery {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-elevated);
}

.gallery--after-features {
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.gallery__intro {
  max-width: 720px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section-tag--spaced {
  margin-top: var(--space-xl);
}

.gallery__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.gallery__carousel {
  margin-bottom: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Carrossel */
.carousel {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.carousel__track {
  display: flex;
  transition: transform var(--duration) var(--ease-out);
  height: 100%;
}

.carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel__slide img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.carousel__caption {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--duration);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.carousel__btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.carousel__btn--prev {
  left: var(--space-sm);
}

.carousel__btn--next {
  right: var(--space-sm);
}

.carousel__dots {
  position: absolute;
  bottom: calc(44px + var(--space-sm));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  z-index: 10;
}

.carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--duration);
}

.carousel__dots span.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.gallery__cta {
  text-align: center;
}

/* Lightbox / zoom perspectivas */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.gallery-lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  pointer-events: none;
}

.gallery-lightbox__inner > * {
  pointer-events: auto;
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: min(78vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__caption {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.gallery-lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--duration);
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: background var(--duration);
}

.gallery-lightbox__nav:hover {
  background: var(--color-accent);
  color: #fff;
}

.gallery-lightbox__nav--prev {
  left: -56px;
}

.gallery-lightbox__nav--next {
  right: -56px;
}

.gallery-lightbox--single .gallery-lightbox__nav {
  display: none;
}

@media (max-width: 900px) {
  .gallery-lightbox__nav--prev {
    left: 4px;
  }

  .gallery-lightbox__nav--next {
    right: 4px;
  }

  .gallery-lightbox__close {
    top: -3rem;
  }
}


/* ============================================
   Plantas
   ============================================ */

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

.plantas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.planta-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}

.planta-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.planta-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-surface);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.planta-card__zoom {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.planta-card__image--51 {
  background-image: url('https://placehold.co/600x450/f5f3ef/8b6914?text=51m%C2%B2');
}

/* Planta rotacionada no fundo (::before) para o botão não ficar de cabeça para baixo */
.planta-card__image--53,
.planta-card__image--57 {
  background-image: none;
}

.planta-card__image--53::before,
.planta-card__image--57::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}

.planta-card__image--53::before {
  background-image: url('images/plantas/53m.jpg');
}

.planta-card__image--57::before {
  background-image: url('images/plantas/57m.jpg');
}

.planta-card__image--59 {
  background-image: url('https://placehold.co/600x450/f5f3ef/8b6914?text=59m%C2%B2');
}

.planta-card__tipo {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.planta-card__vaga {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.planta-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.planta-card__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.planta-card__diferenciais {
  min-width: 0;
}

.planta-card__diferenciais-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.planta-card__size {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent);
}

.plantas__cta {
  text-align: center;
}

.plantas__diferenciais-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plantas__diferenciais-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.plantas__diferenciais-list li:last-child {
  margin-bottom: 0;
}

.plantas__diferenciais-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

/* ============================================
   Andamento & Implantação
   ============================================ */

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

.implantacao__placeholder {
  background: var(--color-surface);
  border: 2px dashed var(--color-border-strong);
  border-radius: 8px;
  padding: var(--space-3xl);
  text-align: center;
  color: var(--color-text-muted);
}

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

.implantacao__content {
  text-align: center;
}

.implantacao__map {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.implantacao__image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
  transform: scaleX(1);
}

.implantacao__marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border-radius: 50%;
  background: rgba(139, 105, 20, 0.95);
  color: #fff;
  padding: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.75);
  cursor: default;
  touch-action: auto;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.implantacao__marker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  /* Ajuste óptico: algarismos costumam “subir” no círculo */
  transform: translateY(0.5px);
}

.implantacao__note {
  margin-top: calc(var(--space-md) * -1);
  margin-bottom: var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

.implantacao__legend {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  columns: 2;
  column-gap: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.implantacao__legend li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: color var(--duration), font-weight var(--duration);
}

.implantacao__legend li.is-highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.implantacao__cta {
  display: inline-block;
}

/* ============================================
   Localização
   ============================================ */

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

.localizacao__text {
  max-width: 720px;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.localizacao__aerial {
  margin-bottom: var(--space-xl);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.localizacao__aerial img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 38% center;
  display: block;
}

.localizacao__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.localizacao__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.localizacao__address {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.localizacao__address strong {
  color: var(--color-text);
}

/* ============================================
   Ficha Técnica
   ============================================ */

.ficha-tecnica {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
}

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

.ficha-tecnica__block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ficha-tecnica__block h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.ficha-tecnica__list dt {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.ficha-tecnica__list dt:first-child {
  margin-top: 0;
}

.ficha-tecnica__list dd {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-left: 0;
}

/* ============================================
   FAQ / Accordion
   ============================================ */

.faq {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-elevated);
}

.accordion {
  max-width: 720px;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration);
}

.accordion__trigger:hover {
  color: var(--color-accent);
}

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
}

.accordion__item[data-open] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__item[data-open] .accordion__content {
  max-height: 300px;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease-out);
}

.accordion__content p {
  padding-bottom: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   Contato
   ============================================ */

.contato {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
}

.contato .section-title {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.contact-form {
  max-width: 560px;
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--duration);
}

.form-group input::placeholder {
  color: var(--color-text-subtle);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form .btn {
  margin-top: var(--space-md);
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  position: relative;
}

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

.footer__zimba {
  grid-column: 1 / -1;
  max-width: 560px;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}

.footer__zimba-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer__logos-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer__logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer__zimba-logo-link {
  display: inline-block;
  color: var(--color-text-muted);
  transition: color var(--duration);
}

.footer__zimba-logo-link:hover {
  color: var(--color-accent);
}

.footer__zimba-logo {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
}

.footer__label,
.footer__financiamento-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

.footer__caixa-logo {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__logo-inline {
  display: inline-block;
  vertical-align: middle;
}

.footer__logo-inline img {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

.footer__legal {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.footer__legal p {
  margin-bottom: var(--space-xs);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  grid-column: 1 / -1;
}

.footer__nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--duration);
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

.footer__cta {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--duration) var(--ease-out);
  z-index: 100;
}

.footer__cta:hover {
  background: #20bd5a;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.footer__cta-icon {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
