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

:root {
  --gold: #C9A96E;
  --gold-light: #D4BC8B;
  --gold-dark: #A8883E;
  --dark: #1A1A1A;
  --dark-green: #2C3E2D;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
  max-width: 100vw;
}
.nav.scrolled {
  background: rgba(26,26,26,.95);
  padding: .7rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold); letter-spacing: 2px; text-decoration: none;
}
.nav-logo span { color: var(--white); font-weight: 300; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none; font-size: .85rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: .6rem 1.5rem; border-radius: 2px; font-weight: 600 !important;
  letter-spacing: 1px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

/* ── LANGUAGE SELECTOR ── */
.lang-selector {
  position: relative; margin-left: .5rem;
}
.lang-current {
  display: flex; align-items: center; gap: .4rem;
  background: none; border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-family: 'Raleway', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  padding: .4rem .75rem; cursor: pointer; transition: all .3s;
  border-radius: 2px; text-transform: uppercase;
}
.lang-current:hover,
.lang-selector.active .lang-current {
  border-color: var(--gold); color: var(--gold);
}
.lang-current svg {
  width: 10px; height: 10px; fill: currentColor;
  transition: transform .3s;
}
.lang-selector.active .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + .5rem); right: 0;
  background: rgba(26,26,26,.97); border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .3s; min-width: 100%; z-index: 110;
}
.lang-selector.active .lang-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-dropdown a {
  display: block; padding: .6rem 1rem; font-size: .8rem;
  font-weight: 500; color: rgba(255,255,255,.7);
  text-decoration: none; letter-spacing: 1px;
  transition: all .3s; white-space: nowrap;
}
.lang-dropdown a:hover {
  background: rgba(201,169,110,.15); color: var(--gold);
}
.lang-dropdown a.active-lang {
  color: var(--gold); font-weight: 700;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px; background: var(--white); transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 100px 0 60px;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  width: max(177.78vh, 100vw);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  border: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.7) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.6) 70%,
    rgba(0,0,0,.8) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 2rem; max-width: 800px; width: 100%;
}
.hero-badge {
  display: inline-block; font-size: .75rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--dark); border: 1px solid var(--gold);
  padding: .45rem 1.4rem; margin-bottom: 1.1rem;
  background: var(--gold); font-weight: 700;
}
.hero-title { margin-bottom: 1rem; }
.hero-logo { max-width: clamp(200px, 38vw, 400px); height: auto; filter: drop-shadow(0 2px 20px rgba(0,0,0,.5)); }
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 400; line-height: 1.6; margin-bottom: 2rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600; color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero-stat-label {
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-top: .3rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.btn {
  display: inline-block; padding: 1rem 2.5rem;
  font-family: 'Raleway', sans-serif; font-size: .85rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; transition: all .3s;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 30px; height: 30px; stroke: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── HERO — short viewport ── */
@media (max-height: 800px) {
  .hero { padding: 80px 0 40px; }
  .hero-content { padding: 1rem 2rem; }
  .hero-badge { margin-bottom: .75rem; padding: .35rem 1rem; font-size: .65rem; }
  .hero-logo { max-width: clamp(150px, 28vw, 260px); }
  .hero-title { margin-bottom: .5rem; }
  .hero-subtitle { font-size: .9rem; line-height: 1.5; margin-bottom: 1rem; }
  .hero-stats { gap: 1.75rem; margin-bottom: 1rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .hero-stat-label { font-size: .65rem; }
  .hero-buttons .btn { padding: .75rem 1.75rem; font-size: .8rem; }
  .scroll-indicator { bottom: 1rem; }
}

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 1.5rem;
  color: var(--dark);
}
.section-text {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-light);
  max-width: 700px;
}
.divider {
  width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0;
}

/* ── SOBRE ── */
.sobre { background: var(--white); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.sobre-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.5rem;
}
.sobre-feature {
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
}
.sobre-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: .4rem; color: var(--dark);
}
.sobre-feature p { font-size: .9rem; color: var(--text-light); }
.sobre-video-wrapper {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 16/9; box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.sobre-video-wrapper video {
  width: 100%; height: 100%; object-fit: cover;
}

/* ── DIFERENCIAIS ── */
.diferenciais { background: var(--dark); color: var(--white); }
.diferenciais .section-title { color: var(--white); }
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.diff-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,169,110,.2);
  transition: all .3s; position: relative; overflow: hidden;
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.diff-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.diff-card:hover::before { transform: scaleX(1); }
.diff-icon {
  font-size: 2rem; margin-bottom: 1rem; display: block;
}
.diff-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: .75rem; color: var(--gold-light);
}
.diff-card p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.7); }

/* ── PLANTAS / CASAS ── */
.casas { background: var(--cream); }
.casas-header { text-align: center; margin-bottom: 3rem; }
.casas-header .section-text { margin: 0 auto; }
.casas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.casa-card {
  background: var(--white); padding: 2.5rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: all .3s; position: relative;
}
.casa-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.casa-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; color: rgba(201,169,110,.15);
  position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
}
.casa-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--dark);
  margin-bottom: 1.5rem;
}
.casa-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem;
}
.casa-detail-label {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: .25rem;
}
.casa-detail-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--dark);
}
.casa-price {
  padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.casa-price-label {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light);
}
.casa-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--gold-dark);
}
.casa-price-m2 {
  font-size: .8rem; color: var(--text-light); margin-top: .2rem;
}
.casa-tags {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.casa-tag {
  font-size: .75rem; letter-spacing: 1px; padding: .35rem .8rem;
  background: rgba(201,169,110,.1); color: var(--gold-dark);
  border-radius: 2px;
}

/* ── PLANTAS BAIXAS ── */
.plantas { background: var(--white); }
.plantas-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.plantas-tab {
  padding: .75rem 1.5rem; font-family: 'Raleway', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: 1px;
  border: 1px solid rgba(0,0,0,.1); background: transparent;
  color: var(--text-light); cursor: pointer; transition: all .3s;
  border-radius: 2px;
}
.plantas-tab span {
  font-weight: 400; font-size: .75rem; color: var(--text-light);
  margin-left: .25rem;
}
.plantas-tab:hover,
.plantas-tab.active {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.plantas-tab.active span,
.plantas-tab:hover span { color: var(--dark); }
.plantas-viewer {
  background: var(--cream); border-radius: 4px; padding: 1.5rem;
  text-align: center;
}
.planta-img { display: none; }
.planta-img.active { display: block; }
.planta-img img {
  max-width: 100%; height: auto; border-radius: 4px;
  cursor: pointer;
}
.plantas-nota {
  margin-top: 1.5rem; font-size: .85rem; color: var(--text-light);
  font-style: italic;
}

/* ── FICHA TÉCNICA ── */
.ficha { background: var(--white); }
.ficha-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.ficha-list { list-style: none; }
.ficha-list li {
  display: flex; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .95rem;
}
.ficha-list li span:first-child { color: var(--text-light); }
.ficha-list li span:last-child { font-weight: 600; color: var(--dark); text-align: right; }
.ficha-items h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem;
}
.ficha-items-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.ficha-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--text);
  padding: .75rem; background: var(--cream); border-radius: 2px;
}
.ficha-check { color: var(--gold); font-weight: 700; }

/* ── LOCALIZAÇÃO ── */
.localizacao { background: var(--dark-green); color: var(--white); }
.localizacao .section-title { color: var(--white); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 3rem;
}
.loc-group h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gold-light); margin-bottom: 1rem;
}
.loc-group ul { list-style: none; }
.loc-group li {
  padding: .6rem 0; font-size: .95rem; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: .75rem;
}
.loc-group li::before {
  content: '›'; color: var(--gold); font-weight: 700; font-size: 1.2rem;
}
.loc-address {
  background: rgba(255,255,255,.05); padding: 2rem;
  border-left: 3px solid var(--gold); margin-top: 2rem;
}
.loc-address p {
  font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.9);
}
.loc-map {
  margin-top: 3rem;
}
.loc-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .loc-map iframe { height: 300px; }
}

/* ── INCORPORADORA ── */
.incorporadora { background: var(--cream); }
.inc-content { max-width: 800px; }

/* ── CTA / CONTATO ── */
.cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  text-align: center; color: var(--white); padding: 6rem 2rem;
}
.cta .section-title { color: var(--white); }
.cta .section-text {
  color: rgba(255,255,255,.7); margin: 0 auto 2.5rem;
}
.cta .divider { margin: 1.5rem auto; }
.cta-form {
  max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem;
}
.cta-form input, .cta-form textarea {
  width: 100%; padding: 1rem 1.25rem;
  font-family: 'Raleway', sans-serif; font-size: .9rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); outline: none; transition: border-color .3s;
  border-radius: 2px;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.cta-form input:focus, .cta-form textarea:focus {
  border-color: var(--gold);
}
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form .btn { width: 100%; text-align: center; }
.cta-form .btn:disabled { opacity: .5; cursor: wait; }
.form-msg { text-align: center; font-size: .9rem; padding: .75rem 0; display: none; }
.form-msg.success { display: block; color: #7fda89; }
.form-msg.error { display: block; color: #f87171; }

/* ── FOOTER ── */
.footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  padding: 3rem 2rem 5rem; text-align: center; font-size: .8rem;
}
.footer-logo {
  max-width: 120px; height: auto; margin-bottom: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); letter-spacing: 2px;
  margin-bottom: .5rem;
}
.footer-links {
  display: flex; gap: 1rem; justify-content: center; align-items: center;
  margin: 1.25rem 0;
}
.footer-links a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .8rem;
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(255,255,255,.25); }
.footer-legal {
  max-width: 800px; margin: 1rem auto 0;
  font-size: .7rem; line-height: 1.6; color: rgba(255,255,255,.3);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.7); display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); max-width: 700px; width: 100%;
  max-height: 85vh; border-radius: 4px; position: relative;
  display: flex; flex-direction: column;
}
.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--dark); padding: 2rem 2.5rem 1rem;
}
.modal-body {
  padding: 0 2.5rem 2rem; overflow-y: auto; font-size: .9rem;
  line-height: 1.8; color: var(--text);
}
.modal-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--dark); margin: 1.5rem 0 .5rem;
}
.modal-body p { margin-bottom: .75rem; }
.modal-body ul {
  margin: .5rem 0 1rem 1.5rem; list-style: disc;
}
.modal-body li { margin-bottom: .4rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 2rem; color: var(--text-light); background: none;
  border: none; cursor: pointer; line-height: 1; transition: color .3s;
}
.modal-close:hover { color: var(--dark); }


@media (max-width: 600px) {
  .modal { max-height: 90vh; }
  .modal h2 { padding: 1.5rem 1.5rem .75rem; font-size: 1.3rem; }
  .modal-body { padding: 0 1.5rem 1.5rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,26,26,.98); padding: 1.5rem 2rem;
    gap: 1rem;
  }
  .hamburger { display: flex; }
  .lang-selector { margin-left: auto; margin-right: .5rem; }
  .lang-dropdown { right: 0; left: auto; }
}
@media (max-width: 968px) {
  .sobre-grid, .ficha-grid, .loc-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .casas-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .sobre-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { padding: 1rem; }
  .hero-badge { margin-bottom: 1rem; padding: .4rem 1rem; font-size: .65rem; }
  .hero-logo { max-width: clamp(160px, 45vw, 260px); }
  .hero-title { margin-bottom: .5rem; }
  .hero-subtitle { font-size: .9rem; margin-bottom: 1.5rem; }
  .hero-stats { gap: 1rem; margin-bottom: 1.5rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .hero-stat-label { font-size: .65rem; letter-spacing: 1px; }
  .hero-buttons { gap: .75rem; }
  .hero-buttons .btn { padding: .8rem 1.5rem; font-size: .75rem; }
  .casa-details { grid-template-columns: 1fr; }
  .ficha-items-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item.galeria-wide { grid-column: span 1; }
  .lightbox-prev, .lightbox-next { font-size: 2rem; padding: .5rem; }
}

/* ── PRIVACY BAR ── */
.privacy-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,26,26,.97);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform .5s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.privacy-bar.visible { transform: translateY(0); }
.privacy-bar-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.privacy-bar-content p {
  font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.7); margin: 0;
}
.privacy-bar-link, .privacy-bar-link:visited {
  color: var(--gold-light) !important; text-decoration: underline;
  transition: color .3s;
}
.privacy-bar-link:hover { color: var(--gold) !important; }
.privacy-bar-btn {
  white-space: nowrap; padding: .7rem 2rem; font-size: .8rem;
}

@media (max-width: 600px) {
  .privacy-bar-content { flex-direction: column; text-align: center; gap: 1rem; }
  .privacy-bar-btn { width: 100%; }
}

/* ── GALERIA ── */
.galeria { background: var(--white); }
.galeria-filtros {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.galeria-filtro {
  padding: .5rem 1.25rem; font-family: 'Raleway', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border: 1px solid rgba(0,0,0,.1);
  background: transparent; color: var(--text-light);
  cursor: pointer; transition: all .3s; border-radius: 2px;
}
.galeria-filtro:hover,
.galeria-filtro.active {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.galeria-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.galeria-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10; border-radius: 2px;
}
.galeria-item.galeria-wide { grid-column: span 2; }
.galeria-item.hidden { display: none; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem; font-size: .8rem; font-weight: 600;
  color: var(--white); letter-spacing: 1px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  transform: translateY(100%); transition: transform .3s;
}
.galeria-item:hover .galeria-caption { transform: translateY(0); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.95); display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: var(--white); background: none;
  border: none; cursor: pointer; line-height: 1; z-index: 1001;
  transition: color .3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 3rem; color: var(--white); background: none;
  border: none; cursor: pointer; z-index: 1001; padding: 1rem;
  transition: color .3s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }
.lightbox-caption {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); color: var(--white);
  font-size: 1rem; font-weight: 500; letter-spacing: 1px;
  text-align: center;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 32px; height: 32px; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
