@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --black: #080808;
  --black-2: #101010;
  --black-3: #181818;
  --gold: #d4af37;
  --gold-light: #efd98a;
  --white: #f7f5ef;
  --muted: #aaa79f;
  --line: rgba(212, 175, 55, .25);
  --max: 1220px;
  --shadow: 0 24px 70px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 10px; left: 10px; transform: translateY(-150%);
  z-index: 1000; background: var(--gold); color: #000; padding: 10px 14px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(8,8,8,.88);
  border-color: rgba(212,175,55,.18);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { width: 220px; flex: 0 0 auto; }
.brand img { width: 100%; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #d7d5cf;
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav .nav-cta {
  padding: 11px 17px; border: 1px solid var(--gold); color: var(--gold-light);
}
.lang-switch { display: flex; gap: 5px; padding-left: 8px; border-left: 1px solid #333; }
.lang-switch button {
  border: 0; background: transparent; color: #777; padding: 6px 4px; font-size: .72rem;
}
.lang-switch button.active { color: var(--gold); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 6px 0; background: var(--gold-light); }

.hero {
  min-height: 100svh; position: relative; display: grid; align-items: center;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.88) 46%, rgba(8,8,8,.2) 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .18;
  background-image: linear-gradient(rgba(212,175,55,.18) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,.18) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; right: -100px; top: 10%;
  background: radial-gradient(circle, rgba(212,175,55,.17), transparent 67%);
  filter: blur(10px);
}
.hero-art {
  position: absolute; width: 63%; max-width: 1000px; right: -5%; bottom: 0; opacity: .78;
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 70px; }
.eyebrow {
  margin: 0 0 18px; color: var(--gold); text-transform: uppercase;
  letter-spacing: .24em; font-size: .73rem; font-weight: 600;
}
.hero h1 {
  margin: 0; max-width: 790px; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 7.5rem); line-height: .86; font-weight: 500;
  letter-spacing: -.045em;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--gold); font-weight: 600; }
.hero-copy { max-width: 610px; margin: 34px 0 30px; color: #c8c5bd; font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px;
  padding: 0 24px; text-transform: uppercase; letter-spacing: .1em;
  font-size: .76rem; font-weight: 700; border: 1px solid transparent; transition: .25s ease;
}
.btn-primary { background: var(--gold); color: #080808; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { border-color: #5b5544; color: var(--white); background: rgba(0,0,0,.12); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.hero-markets {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 58px;
  font-size: .73rem; text-transform: uppercase; letter-spacing: .12em;
}
.hero-markets span { color: #67645e; margin-right: 10px; }
.hero-markets strong { color: #c9c5bb; font-weight: 500; }
.hero-markets i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.scroll-cue {
  position: absolute; z-index: 4; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid #5c5749; border-radius: 20px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 4px; background: var(--gold);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

.trust-strip { background: #0d0d0d; border-bottom: 1px solid #242424; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div {
  padding: 24px 28px; display: flex; align-items: center; gap: 16px;
  border-right: 1px solid #242424;
}
.trust-grid div:first-child { border-left: 1px solid #242424; }
.trust-grid strong { color: var(--gold); font: 600 1.2rem "Cormorant Garamond", serif; }
.trust-grid span { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: #bdb9b0; }

.section { padding: 120px 0; position: relative; }
.section-heading h2 {
  margin: 0; font: 600 clamp(2.7rem, 5vw, 5.2rem)/.98 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; align-items: start; }
.company { background: var(--white); color: #111; }
.company .eyebrow { color: #9a7814; }
.company-copy { padding-top: 42px; }
.company-copy > p { margin: 0 0 24px; font-size: 1.05rem; color: #4d4a44; }
.company-copy > p:first-child { font-size: 1.25rem; color: #191919; }
.signature-line { display: flex; align-items: center; gap: 16px; margin-top: 42px; }
.signature-line > span { width: 70px; height: 1px; background: #aa8622; }
.signature-line p { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.signature-line small { font-family: "Manrope", sans-serif; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: #777; }

.services { background: #0b0b0b; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.heading-note { max-width: 320px; color: #8f8c84; margin: 0 0 10px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative; min-height: 330px; padding: 36px 32px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; transition: background .25s, transform .25s;
}
.service-card::after {
  content: ""; position: absolute; inset: auto -60px -60px auto; width: 140px; height: 140px;
  border: 1px solid rgba(212,175,55,.18); transform: rotate(45deg);
}
.service-card:hover { background: #14130f; transform: translateY(-4px); }
.service-number { position: absolute; top: 22px; right: 24px; color: #5a5547; font-size: .7rem; letter-spacing: .15em; }
.service-icon { color: var(--gold); font-size: 2.1rem; min-height: 70px; display: flex; align-items: center; }
.service-card h3 { margin: 14px 0 16px; font: 600 1.75rem "Cormorant Garamond", serif; }
.service-card p { margin: 0; color: #8f8c84; font-size: .9rem; }

.project-showcase { background: #111; }
.project-intro { max-width: 560px; color: #8f8c84; margin: 24px 0 54px; }
.projects-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.project-card { position: relative; background: #161616; min-height: 340px; overflow: hidden; border: 1px solid #2a2821; }
.project-large { grid-row: span 2; min-height: 702px; }
.project-visual { position: absolute; inset: 0; transition: transform .55s ease; }
.project-card:hover .project-visual { transform: scale(1.035); }
.project-visual::before, .project-visual::after { content: ""; position: absolute; }
.visual-bridge {
  background:
    linear-gradient(to top, rgba(0,0,0,.8), transparent 62%),
    linear-gradient(125deg,#2e2e2b,#111 70%);
}
.visual-bridge::before {
  left: -10%; right: -10%; bottom: 24%; height: 23%;
  border-top: 7px solid #907625; border-bottom: 2px solid #4e431e;
  transform: perspective(700px) rotateX(58deg);
  box-shadow: 0 -18px 0 rgba(212,175,55,.08);
}
.visual-bridge::after {
  width: 130%; height: 55%; left: -15%; bottom: 0;
  background: repeating-linear-gradient(90deg, transparent 0 11%, rgba(212,175,55,.19) 11.2% 11.6%, transparent 11.8% 22%);
  clip-path: polygon(0 15%,100% 0,100% 100%,0 100%);
}
.visual-concrete { background: linear-gradient(to top, rgba(0,0,0,.75), transparent 60%), linear-gradient(145deg,#3b3a36,#111 70%); }
.visual-concrete::before {
  width: 62%; height: 80%; right: 8%; top: 0;
  background: repeating-linear-gradient(90deg, #77746b 0 8%, #45443f 8% 14%, transparent 14% 20%);
  transform: skewY(-10deg); opacity: .42;
}
.visual-concrete::after {
  left: 14%; bottom: 16%; width: 70%; height: 8px; background: var(--gold);
  box-shadow: 0 -64px 0 rgba(212,175,55,.34), 0 -128px 0 rgba(212,175,55,.14);
  transform: rotate(-8deg);
}
.visual-building { background: linear-gradient(to top, rgba(0,0,0,.78), transparent 62%), linear-gradient(140deg,#2c2b29,#0c0c0c 72%); }
.visual-building::before {
  width: 58%; height: 90%; left: 24%; top: 3%;
  background: repeating-linear-gradient(90deg, #171717 0 12%, #8f7730 12% 14%, #252525 14% 26%);
  clip-path: polygon(10% 0,100% 10%,85% 100%,0 91%); opacity: .8;
}
.visual-building::after {
  width: 1px; height: 82%; right: 20%; top: 8%; background: var(--gold);
  box-shadow: -90px 30px 0 rgba(212,175,55,.45);
}
.project-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
}
.project-info span { color: var(--gold); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }
.project-info h3 { margin: 7px 0 5px; font: 600 2rem "Cormorant Garamond", serif; }
.project-info p { margin: 0; color: #8c8982; font-size: .78rem; }

.process { background: var(--white); color: #111; }
.process .eyebrow { color: #9a7814; }
.process-grid {
  list-style: none; padding: 0; margin: 60px 0 0; display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #d7d1c1;
}
.process-grid li { padding: 32px 28px 10px 0; border-right: 1px solid #d7d1c1; min-height: 240px; }
.process-grid li:not(:first-child) { padding-left: 28px; }
.process-grid span { color: #a6872b; font-size: .75rem; letter-spacing: .15em; }
.process-grid h3 { margin: 38px 0 12px; font: 600 1.7rem "Cormorant Garamond", serif; }
.process-grid p { margin: 0; color: #666159; font-size: .9rem; }

.quote-section { background: #0a0a0a; }
.quote-section::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 42%;
  background: linear-gradient(145deg, rgba(212,175,55,.08), transparent 65%);
  border-right: 1px solid rgba(212,175,55,.12);
}
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; position: relative; }
.quote-copy { position: sticky; top: 140px; align-self: start; }
.quote-copy h2 { margin: 0; font: 600 clamp(3rem,5vw,5.6rem)/.95 "Cormorant Garamond",serif; }
.quote-copy > p:not(.eyebrow) { color: #8f8c84; max-width: 430px; }
.direct-email { display: inline-block; margin-top: 25px; color: var(--gold-light); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.quote-form { padding: 42px; background: #101010; border: 1px solid #2c281d; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-form label { display: block; margin-bottom: 22px; }
.quote-form label > span { display: block; margin-bottom: 8px; color: #aaa69d; font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: 1px solid #39352b; background: #0a0a0a; color: var(--white);
  padding: 14px 15px; outline: none; border-radius: 0;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); }
.quote-form textarea { resize: vertical; min-height: 130px; }
.quote-form .consent { display: flex; gap: 10px; align-items: flex-start; }
.quote-form .consent input { width: auto; margin-top: 4px; accent-color: var(--gold); }
.quote-form .consent span { text-transform: none; letter-spacing: 0; font-size: .78rem; }
.submit-btn { width: 100%; }
.form-note { text-align: center; color: #68655e; font-size: .72rem; margin: 12px 0 0; }

.contact-section { padding-top: 0; background: #0a0a0a; }
.contact-card {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 8vw; align-items: center;
  padding: 58px; border: 1px solid var(--line); background: #0d0d0d;
}
.contact-card img { width: 330px; }
.contact-card > div:first-child p { margin: 16px 0 0; color: #807d75; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 34px; }
.contact-details p { margin: 0; }
.contact-details span { display: block; color: #6d6a63; font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 5px; }
.contact-details strong, .contact-details a { font-size: .9rem; font-weight: 500; color: #d7d3ca; }
.contact-details a:hover { color: var(--gold-light); }

.site-footer { background: #050505; border-top: 1px solid #24221c; }
.footer-top { padding: 54px 0; display: flex; justify-content: space-between; gap: 40px; }
.footer-brand { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--gold-light); margin: 0 0 12px; }
.site-footer address { color: #77736b; font-style: normal; font-size: .8rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; font-size: .78rem; color: #918d84; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 18px 0 24px; border-top: 1px solid #1c1c1c; display: flex; justify-content: space-between; gap: 20px;
  color: #55534f; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
}

.cookie-banner {
  position: fixed; z-index: 200; left: 20px; right: 20px; bottom: 20px; max-width: 780px;
  margin: auto; padding: 18px 20px; display: none; align-items: center; gap: 20px;
  background: #171717; border: 1px solid #4e4324; box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: #aaa69e; font-size: .78rem; }
.cookie-banner > div { display: flex; align-items: center; gap: 14px; margin-left: auto; white-space: nowrap; }
.cookie-banner a { color: var(--gold-light); font-size: .75rem; }
.cookie-banner button { border: 0; background: var(--gold); color: #000; padding: 9px 13px; font-size: .72rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal-page { background: var(--white); color: #191919; min-height: 100vh; }
.legal-header { background: #090909; padding: 24px 0; border-bottom: 1px solid var(--line); }
.legal-header img { width: 230px; }
.legal-content { width: min(calc(100% - 40px), 850px); margin: auto; padding: 80px 0 110px; }
.legal-content h1 { font: 600 clamp(2.8rem,6vw,5rem) "Cormorant Garamond",serif; margin: 0 0 20px; }
.legal-content h2 { font: 600 1.75rem "Cormorant Garamond",serif; margin-top: 42px; }
.legal-content p, .legal-content li { color: #555149; }
.legal-content a { color: #856717; text-decoration: underline; }
.back-link { display: inline-block; margin-top: 42px; color: #856717; font-weight: 600; }

@media (max-width: 1020px) {
  .main-nav {
    position: fixed; inset: 0; background: rgba(7,7,7,.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 28px; transform: translateX(100%);
    transition: transform .32s ease; z-index: -1;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1rem; }
  .menu-toggle { display: block; z-index: 3; }
  .lang-switch { margin-left: 0; }
  .brand { width: 190px; }
  .hero-art { width: 80%; opacity: .4; right: -22%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-copy { position: static; }
  .quote-section::before { width: 100%; height: 36%; bottom: auto; border-right: 0; border-bottom: 1px solid rgba(212,175,55,.12); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 74px; gap: 14px; }
  .brand { width: 160px; }
  .lang-switch { order: 2; }
  .lang-switch button { font-size: .66rem; }
  .menu-toggle { order: 3; }
  .hero { min-height: 850px; }
  .hero::after { background: linear-gradient(90deg, rgba(8,8,8,.97), rgba(8,8,8,.7)); }
  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .hero-copy { font-size: .94rem; }
  .hero-actions .btn { width: 100%; }
  .hero-markets { margin-top: 38px; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div { padding: 18px 14px; }
  .trust-grid div:nth-child(3) { border-left: 1px solid #242424; }
  .trust-grid span { font-size: .66rem; }
  .section { padding: 82px 0; }
  .two-col { grid-template-columns: 1fr; gap: 25px; }
  .company-copy { padding-top: 0; }
  .heading-row { display: block; }
  .heading-note { margin-top: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-large { grid-row: auto; min-height: 460px; }
  .project-card { min-height: 360px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; border-right: 0; border-bottom: 1px solid #d7d1c1; padding: 25px 0; }
  .process-grid li:not(:first-child) { padding-left: 0; }
  .process-grid h3 { margin: 10px 0 5px; }
  .quote-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-card { grid-template-columns: 1fr; padding: 34px 24px; }
  .contact-card img { width: 260px; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  .footer-top, .footer-bottom { display: block; }
  .footer-links { align-items: flex-start; margin-top: 30px; }
  .footer-bottom p { margin: 8px 0; }
  .cookie-banner { align-items: flex-start; flex-direction: column; }
  .cookie-banner > div { margin-left: 0; width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


.contact-person {
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, .22);
  background: rgba(212, 175, 55, .035);
  min-width: 0;
}
.contact-person span {
  margin-bottom: 8px;
}
.contact-person h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font: 600 1.55rem "Cormorant Garamond", Georgia, serif;
}
.contact-person a {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.8;
}
.contact-person .phone-link {
  color: var(--white);
  font-size: 1rem;
}
.contact-person a:hover {
  color: var(--gold-light);
}
@media (max-width: 1180px) and (min-width: 1021px) {
  .main-nav { gap: 18px; }
  .nav-wrap { gap: 18px; }
  .lang-switch { gap: 2px; }
}
@media (max-width: 760px) {
  .lang-switch button { padding-inline: 3px; }
}



/* Projeto em destaque — Edifício */
.building-feature {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
  gap: 46px;
  align-items: center;
  margin: 56px 0 64px;
  padding: 34px;
  border: 1px solid rgba(212,175,55,.28);
  background:
    linear-gradient(135deg, rgba(212,175,55,.07), transparent 43%),
    #0c0c0c;
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.building-feature-copy h3 {
  margin: 0 0 20px;
  color: var(--white);
  font: 600 clamp(2.2rem, 4vw, 4.2rem)/.98 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}

.building-feature-copy > p:not(.eyebrow):not(.experience-note) {
  color: #a8a49b;
  margin: 0;
}

.building-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0;
  padding: 17px 0;
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.18);
}

.building-feature-meta span {
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-note {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: #77746d;
  font-size: .74rem;
  line-height: 1.65;
}

.building-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 390px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(212,175,55,.3);
  outline: none;
  isolation: isolate;
  touch-action: pan-y;
}

.building-slider:focus-visible {
  box-shadow: 0 0 0 3px rgba(212,175,55,.35);
}

.building-slides,
.building-slide {
  position: absolute;
  inset: 0;
}

.building-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .45s ease, transform 2.15s ease, visibility .45s;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.building-slide::before {
  content: "";
  position: absolute;
  inset: -28px;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(.72) brightness(.48);
  transform: scale(1.13);
  opacity: .88;
}

.building-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28), transparent 28%, transparent 72%, rgba(0,0,0,.28)),
    linear-gradient(to top, rgba(0,0,0,.58), transparent 42%);
}

.building-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.building-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.94) contrast(1.025);
  user-select: none;
  -webkit-user-drag: none;
}

.building-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.66), transparent 36%);
}

.building-status {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 48px;
  display: flex;
  align-items: end;
  gap: 15px;
}

.building-status > span {
  color: #e2ded3;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.building-status strong {
  color: var(--gold-light);
  font: 600 1.4rem "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.building-controls {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 39px;
  display: flex;
  gap: 7px;
}

.building-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,217,138,.42);
  background: rgba(4,4,4,.7);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
}

.building-controls button:hover,
.building-controls button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #090909;
  transform: translateY(-2px);
}

.play-icon { display: none; font-size: .76rem; }
.building-slider.paused .pause-icon { display: none; }
.building-slider.paused .play-icon { display: inline; }

.building-dots {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 160px;
  bottom: 20px;
  display: flex;
  gap: 7px;
}

.building-dot {
  width: 18px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.32);
  transition: width .25s, background .25s;
}

.building-dot.active {
  width: 36px;
  background: var(--gold);
}

.building-progress-bar {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
}

.building-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
}

@keyframes buildingProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 980px) {
  .building-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .building-feature-copy {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .building-feature {
    margin-top: 40px;
    padding: 18px;
  }

  .building-slider {
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }

  .building-status {
    left: 16px;
    bottom: 53px;
  }

  .building-controls {
    right: 13px;
    bottom: 40px;
  }

  .building-controls button {
    width: 39px;
    height: 39px;
  }

  .building-dots {
    left: 16px;
    right: 150px;
    bottom: 22px;
    gap: 5px;
  }

  .building-dot {
    width: 8px;
  }

  .building-dot.active {
    width: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .building-slide {
    transition: opacity .01ms;
  }

  .building-progress-bar span {
    animation: none !important;
  }
}



/* Segunda apresentação — Galeria */
.gallery-feature {
  margin-top: 30px;
}

.gallery-dots {
  gap: 3px;
}

.gallery-dots .building-dot {
  flex: 1 1 auto;
  width: auto;
  min-width: 3px;
  max-width: 13px;
  height: 3px;
}

.gallery-dots .building-dot.active {
  width: auto;
  max-width: 24px;
}

@media (max-width: 620px) {
  .gallery-dots {
    right: 150px;
    gap: 2px;
  }

  .gallery-dots .building-dot {
    min-width: 2px;
    max-width: 7px;
  }

  .gallery-dots .building-dot.active {
    max-width: 13px;
  }
}


/* Segundo edifício */
.building2-feature {
  margin-top: 30px;
}


/* Terceiro edifício */
.building3-feature {
  margin-top: 30px;
}

.building3-dots {
  gap: 4px;
}

.building3-dots .building-dot {
  flex: 1 1 auto;
  width: auto;
  min-width: 4px;
  max-width: 16px;
}

.building3-dots .building-dot.active {
  width: auto;
  max-width: 28px;
}


/* Estrutura industrial */
.industrial-feature {
  margin-top: 30px;
}


/* Edificação técnica */
.technical-feature {
  margin-top: 30px;
}

.technical-dots {
  gap: 4px;
}

.technical-dots .building-dot {
  flex: 1 1 auto;
  width: auto;
  min-width: 4px;
  max-width: 17px;
}

.technical-dots .building-dot.active {
  width: auto;
  max-width: 30px;
}


/* Núcleo estrutural */
.core-feature {
  margin-top: 30px;
}

.core-dots {
  gap: 4px;
}

.core-dots .building-dot {
  flex: 1 1 auto;
  width: auto;
  min-width: 4px;
  max-width: 17px;
}

.core-dots .building-dot.active {
  width: auto;
  max-width: 30px;
}


/* Projeto agregado — Go4Zero */
.go4zero-project{margin:56px 0 20px;border:1px solid rgba(212,175,55,.28);background:#0a0a0a;box-shadow:0 30px 90px rgba(0,0,0,.34);overflow:hidden}
.go4zero-hero{position:relative;min-height:540px;overflow:hidden;background:#050505}
.go4zero-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(.92) contrast(1.02)}
.go4zero-hero-shade{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.18) 58%,rgba(0,0,0,.05) 100%),linear-gradient(90deg,rgba(0,0,0,.5),transparent 58%)}
.go4zero-hero-copy{position:absolute;z-index:2;left:clamp(24px,5vw,64px);right:24px;bottom:clamp(30px,5vw,58px);max-width:820px}
.go4zero-hero-copy h3{margin:7px 0 15px;color:var(--white);font:600 clamp(3.4rem,7vw,7rem)/.9 "Cormorant Garamond",Georgia,serif;letter-spacing:-.045em}
.go4zero-location{display:flex;align-items:center;gap:9px;margin:0;color:var(--gold-light);font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.18em}
.go4zero-location>span:first-child{color:var(--gold);font-size:.65rem}
.go4zero-body{padding:clamp(26px,5vw,60px)}
.go4zero-intro{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(250px,.55fr);gap:50px;align-items:start}
.go4zero-lead{margin:0 0 15px;color:var(--white);font:600 clamp(1.55rem,2.6vw,2.3rem)/1.12 "Cormorant Garamond",Georgia,serif}
.go4zero-description>p:last-child{margin:0;color:#99958c;max-width:760px}
.go4zero-roles{display:grid;gap:12px}
.go4zero-role{padding:18px 20px;border:1px solid rgba(212,175,55,.2);background:rgba(212,175,55,.035)}
.go4zero-role span{display:block;margin-bottom:6px;color:#8f8b82;font-size:.66rem;text-transform:uppercase;letter-spacing:.14em}
.go4zero-role strong{color:var(--gold-light);font:600 1.4rem "Cormorant Garamond",Georgia,serif}
.go4zero-note{display:grid;grid-template-columns:32px 1fr;gap:14px;align-items:start;margin:30px 0 24px;padding:17px 19px;border-left:2px solid var(--gold);background:rgba(212,175,55,.035)}
.go4zero-note-mark{width:27px;height:27px;display:grid;place-items:center;border:1px solid rgba(212,175,55,.42);border-radius:50%;color:var(--gold-light);font:600 .82rem Georgia,serif}
.go4zero-note p{margin:2px 0 0;color:#aaa69d;font-size:.78rem;line-height:1.7}
.go4zero-tags{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 46px}
.go4zero-tags span{padding:8px 11px;border:1px solid rgba(212,175,55,.18);color:#8f8b82;font-size:.63rem;text-transform:uppercase;letter-spacing:.11em}
.go4zero-gallery-head{display:flex;justify-content:space-between;gap:20px;align-items:end;margin-bottom:18px}
.go4zero-gallery-head h4{margin:0;color:var(--white);font:600 clamp(2rem,4vw,3.2rem)/1 "Cormorant Garamond",Georgia,serif}
.go4zero-gallery-head>span{color:#8f8b82;font-size:.68rem;letter-spacing:.11em;text-transform:uppercase;white-space:nowrap}
.go4zero-gallery-head>span strong{color:var(--gold-light);font-size:1rem}
.go4zero-slider{min-height:520px;aspect-ratio:16/9}
.go4zero-slide::before{display:none!important}
.go4zero-slide::after{background:linear-gradient(to top,rgba(0,0,0,.55),transparent 40%)!important}
.go4zero-slide img{object-fit:contain!important;background:#050505}
.go4zero-slider .building-status{bottom:24px}
.go4zero-slider .building-controls{bottom:17px}
.go4zero-slider .building-progress-bar{height:3px}
@media(max-width:900px){.go4zero-intro{grid-template-columns:1fr;gap:28px}.go4zero-roles{grid-template-columns:1fr 1fr}.go4zero-hero{min-height:440px}}
@media(max-width:620px){.go4zero-project{margin-top:40px}.go4zero-hero{min-height:390px}.go4zero-hero-copy h3{font-size:clamp(3rem,15vw,4.8rem)}.go4zero-body{padding:20px}.go4zero-roles{grid-template-columns:1fr}.go4zero-slider{min-height:470px;aspect-ratio:4/5}.go4zero-gallery-head{align-items:flex-start;flex-direction:column}.go4zero-slider .building-status{bottom:26px}.go4zero-slider .building-controls{bottom:17px}}

.go4zero-intro-no-roles{display:block}
.go4zero-intro-no-roles .go4zero-description{max-width:920px}
.go4zero-project-browser{margin-top:48px;padding-top:38px;border-top:1px solid rgba(212,175,55,.22)}
.go4zero-browser-head{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:28px}
.go4zero-browser-head>div{max-width:740px}
.go4zero-browser-head h4{margin:0 0 12px;color:var(--white);font:600 clamp(2.2rem,4vw,3.6rem)/1 "Cormorant Garamond",Georgia,serif;letter-spacing:-.03em}
.go4zero-browser-head>div>p:last-child{margin:0;color:#969188}
.go4zero-browser-head>span{color:#8d897f;font-size:.68rem;letter-spacing:.11em;text-transform:uppercase;white-space:nowrap}
.go4zero-browser-head>span strong{color:var(--gold-light)}
.go4zero-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.go4zero-card-button{display:block;width:100%;height:100%;padding:0;border:1px solid rgba(212,175,55,.18);background:#0b0b0b;color:inherit;text-align:left;overflow:hidden;cursor:pointer;transition:transform .25s ease,border-color .25s ease,background .25s ease}
.go4zero-card-button:hover,.go4zero-card-button:focus-visible,.go4zero-card-button[aria-expanded="true"]{transform:translateY(-3px);border-color:rgba(212,175,55,.58);background:#111}
.go4zero-card-image{position:relative;aspect-ratio:16/10;overflow:hidden;background:#050505}
.go4zero-card-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.64),transparent 58%);pointer-events:none}
.go4zero-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.go4zero-card-button:hover .go4zero-card-image img{transform:scale(1.035)}
.go4zero-card-number,.go4zero-card-count{position:absolute;z-index:2;bottom:13px}
.go4zero-card-number{left:14px;color:var(--gold-light);font:600 1.35rem "Cormorant Garamond",Georgia,serif}
.go4zero-card-count{right:14px;color:#e1ddd4;font-size:.58rem;letter-spacing:.1em;text-transform:uppercase}
.go4zero-card-copy{min-height:184px;padding:18px 19px 16px;display:flex;flex-direction:column;justify-content:space-between;gap:16px}
.go4zero-card-copy h5{margin:5px 0 9px;color:var(--white);font:600 clamp(1.4rem,2vw,1.95rem)/1.06 "Cormorant Garamond",Georgia,serif;letter-spacing:-.02em}
.go4zero-card-copy>div>p:last-child{margin:0;color:#8d897f;font-size:.77rem;line-height:1.58}
.go4zero-card-action{display:flex;justify-content:space-between;align-items:center;padding-top:12px;border-top:1px solid rgba(255,255,255,.07);color:var(--gold-light);font-size:.65rem;letter-spacing:.11em;text-transform:uppercase}
.go4zero-panels{margin-top:22px}
.go4zero-project-panel{padding:25px;border:1px solid rgba(212,175,55,.32);background:#080808;box-shadow:0 24px 70px rgba(0,0,0,.33)}
.go4zero-project-panel[hidden]{display:none!important}
.go4zero-project-panel-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:30px;align-items:start;margin-bottom:20px}
.go4zero-project-panel-head>div{max-width:760px}
.go4zero-project-panel-head h5{margin:5px 0 10px;color:var(--white);font:600 clamp(2rem,3.8vw,3.2rem)/1 "Cormorant Garamond",Georgia,serif}
.go4zero-project-panel-head>div>p:last-child{margin:0;color:#918d84}
.go4zero-close{width:42px;height:42px;padding:0;display:grid;place-items:center;border:1px solid rgba(212,175,55,.35);background:transparent;color:var(--gold-light);font-size:1.45rem;cursor:pointer}
.go4zero-close:hover,.go4zero-close:focus-visible{background:var(--gold);border-color:var(--gold);color:#080808}
.go4zero-project-slider{min-height:500px;aspect-ratio:16/9}
@media(max-width:980px){.go4zero-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.go4zero-project-browser{margin-top:38px;padding-top:28px}.go4zero-browser-head{flex-direction:column;align-items:flex-start}.go4zero-card-grid{grid-template-columns:1fr}.go4zero-card-copy{min-height:0}.go4zero-project-panel{padding:15px}.go4zero-project-slider{min-height:465px;aspect-ratio:4/5}}


/* Go4Zero — fotografias da evolução sem zoom/corte */
.go4zero-project-slider,
.go4zero-project-slider .building-slides,
.go4zero-project-slider .building-slide {
  background: #050505;
}

.go4zero-project-slider .building-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.go4zero-project-slider .building-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  transform: none !important;
  scale: 1 !important;
}

.go4zero-project-slider .building-slide.active img {
  transform: none !important;
}

/* Evita qualquer efeito de ampliação herdado do slideshow geral */
.go4zero-project-slider:hover .building-slide img,
.go4zero-project-slider .building-slide:hover img {
  transform: none !important;
}


/* Ponte Rodoviária sobre o Albert Canal */
.bridge-project{margin:72px 0;border:1px solid rgba(212,175,55,.26);background:#090909;overflow:hidden;box-shadow:0 30px 90px rgba(0,0,0,.28)}
.bridge-project-hero{position:relative;aspect-ratio:3.12/1;min-height:360px;overflow:hidden;background:#050505}
.bridge-project-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center}
.bridge-project-shade{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.82),rgba(0,0,0,.18) 52%,rgba(0,0,0,.05)),linear-gradient(90deg,rgba(0,0,0,.42),transparent 62%)}
.bridge-project-hero-copy{position:absolute;z-index:2;left:clamp(24px,5vw,62px);right:24px;bottom:clamp(26px,4vw,50px);max-width:940px}
.bridge-project-hero-copy h3{margin:6px 0 14px;color:var(--white);font:600 clamp(2.8rem,5.7vw,5.8rem)/.95 "Cormorant Garamond",Georgia,serif;letter-spacing:-.045em}
.bridge-project-location{display:flex;align-items:center;gap:9px;margin:0;color:var(--gold-light);font-size:.76rem;font-weight:700;letter-spacing:.17em;text-transform:uppercase}
.bridge-project-location>span:first-child{color:var(--gold);font-size:.68rem}
.bridge-project-body{padding:clamp(26px,5vw,58px)}
.bridge-project-intro{max-width:920px}.bridge-project-lead{margin:0 0 15px;color:var(--white);font:600 clamp(1.55rem,2.6vw,2.25rem)/1.15 "Cormorant Garamond",Georgia,serif}
.bridge-project-intro>p:last-child{margin:0;color:#969188;line-height:1.75}
.bridge-project-status{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-top:42px;padding-top:34px;border-top:1px solid rgba(212,175,55,.2)}
.bridge-project-status h4{margin:0;color:var(--white);font:600 clamp(2rem,3.5vw,3rem)/1 "Cormorant Garamond",Georgia,serif}
.bridge-project-tags{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.bridge-project-tags span{padding:9px 12px;border:1px solid rgba(212,175,55,.28);color:var(--gold-light);background:rgba(212,175,55,.035);font-size:.66rem;letter-spacing:.11em;text-transform:uppercase}
.bridge-project-coming{margin:20px 0 0;color:#77736b;font-size:.76rem;line-height:1.65}
@media(max-width:760px){.bridge-project-hero{aspect-ratio:auto;min-height:400px}.bridge-project-hero>img{object-fit:cover}.bridge-project-status{align-items:flex-start;flex-direction:column}.bridge-project-tags{justify-content:flex-start}}

.bridge-elements-browser{margin-top:42px;padding-top:34px;border-top:1px solid rgba(212,175,55,.2)}
.bridge-elements-head{margin-bottom:24px}
.bridge-elements-head>div{max-width:760px}
.bridge-elements-head h4{margin:0 0 10px;color:var(--white);font:600 clamp(2rem,3.5vw,3rem)/1 "Cormorant Garamond",Georgia,serif}
.bridge-elements-head>div>p:last-child{margin:0;color:#969188}
.bridge-element-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.bridge-element-card{min-width:0;border:1px solid rgba(212,175,55,.18);background:#0b0b0b}
.bridge-element-button{display:block;width:100%;height:100%;padding:0;border:0;background:transparent;color:inherit;text-align:left;cursor:pointer}
.bridge-element-button:hover,.bridge-element-button:focus-visible,.bridge-element-button[aria-expanded="true"]{background:#111}
.bridge-element-image{position:relative;aspect-ratio:16/10;overflow:hidden;background:#050505}
.bridge-element-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.62),transparent 58%);pointer-events:none}
.bridge-element-image img{width:100%;height:100%;object-fit:cover}
.bridge-element-count{position:absolute;z-index:2;right:14px;bottom:12px;color:#e1ddd4;font-size:.58rem;letter-spacing:.1em;text-transform:uppercase}
.bridge-element-copy{min-height:180px;padding:18px 19px 16px;display:flex;flex-direction:column;justify-content:space-between;gap:16px}
.bridge-element-copy h5{margin:5px 0 9px;color:var(--white);font:600 clamp(1.55rem,2.2vw,2.1rem)/1 "Cormorant Garamond",Georgia,serif}
.bridge-element-copy>div>p:last-child{margin:0;color:#8d897f;font-size:.77rem;line-height:1.58}
.bridge-element-action{display:flex;justify-content:space-between;align-items:center;padding-top:12px;border-top:1px solid rgba(255,255,255,.07);color:var(--gold-light);font-size:.65rem;letter-spacing:.11em;text-transform:uppercase}
.bridge-element-placeholder{min-height:300px;display:grid;place-items:center;border-style:dashed;background:rgba(212,175,55,.015)}
.bridge-element-placeholder-inner{text-align:center}
.bridge-element-placeholder-inner span{display:block;margin-top:8px;color:#6f6b63;font-size:.65rem;letter-spacing:.12em;text-transform:uppercase}
.bridge-element-panels{margin-top:22px}
.bridge-element-panel{padding:24px;border:1px solid rgba(212,175,55,.3);background:#080808;box-shadow:0 24px 70px rgba(0,0,0,.32)}
.bridge-element-panel[hidden]{display:none!important}
.bridge-element-panel-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:28px;align-items:start;margin-bottom:18px}
.bridge-element-panel-head>div{max-width:760px}
.bridge-element-panel-head h5{margin:5px 0 10px;color:var(--white);font:600 clamp(2rem,3.5vw,3rem)/1 "Cormorant Garamond",Georgia,serif}
.bridge-element-panel-head>div>p:last-child{margin:0;color:#918d84}
.bridge-element-close{width:42px;height:42px;display:grid;place-items:center;padding:0;border:1px solid rgba(212,175,55,.34);background:transparent;color:var(--gold-light);font-size:1.45rem;cursor:pointer}
.bridge-element-close:hover,.bridge-element-close:focus-visible{background:var(--gold);border-color:var(--gold);color:#080808}
.bridge-element-slider{min-height:500px;aspect-ratio:16/9;background:#050505}
.bridge-element-slider .building-slides,.bridge-element-slider .building-slide{background:#050505}
.bridge-element-slider .building-slide{display:flex;align-items:center;justify-content:center}
.bridge-element-slider .building-slide img{width:100%;height:100%;object-fit:contain!important;object-position:center center;transform:none!important}
.bridge-element-slider .building-slide.active img,.bridge-element-slider:hover .building-slide img{transform:none!important}
@media(max-width:900px){.bridge-element-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.bridge-element-grid{grid-template-columns:1fr}.bridge-element-panel{padding:15px}.bridge-element-slider{min-height:465px;aspect-ratio:4/5}}

/* Hydro Power Station — Genk */
#hydro-power-station-genk{margin-top:clamp(52px,7vw,96px);padding-top:clamp(26px,4vw,54px);border-top:1px solid rgba(212,175,55,.22)}
#hydro-power-station-genk .bridge-project-hero img{width:100%;height:auto;max-height:760px;object-fit:contain;background:#070707}
#hydro-power-station-genk .bridge-project-hero figcaption{color:#817d75;font-size:.7rem;margin-top:10px}
#hydro-power-station-genk .hydro-elements-browser{margin-top:34px}
#hydro-power-station-genk .bridge-element-placeholder-inner h5{margin:6px 0 10px;color:var(--white);font:600 clamp(1.5rem,2.2vw,2rem)/1 "Cormorant Garamond",Georgia,serif}


/* Hydro — Edifício Principal: fotografia integral, sem zoom/corte */
#hydro-panel-edificio-principal .bridge-element-slider{
  background:#050505;
}
#hydro-panel-edificio-principal .bridge-element-slide{
  transform:none!important;
}
#hydro-panel-edificio-principal .bridge-element-slide img,
#hydro-panel-edificio-principal .bridge-element-slide.active img,
#hydro-panel-edificio-principal .bridge-element-slider:hover .bridge-element-slide img{
  width:100%;
  height:100%;
  object-fit:contain!important;
  object-position:center center;
  transform:none!important;
}


/* Hydro — Canais de Água: fotografia integral, sem zoom/corte */
#hydro-panel-canais-agua .bridge-element-slider{
  background:#050505;
}
#hydro-panel-canais-agua .bridge-element-slide{
  transform:none!important;
}
#hydro-panel-canais-agua .bridge-element-slide img,
#hydro-panel-canais-agua .bridge-element-slide.active img,
#hydro-panel-canais-agua .bridge-element-slider:hover .bridge-element-slide img{
  width:100%;
  height:100%;
  object-fit:contain!important;
  object-position:center center;
  transform:none!important;
}


/* Hydro — Lajes Térreas: fotografia integral, sem zoom/corte */
#hydro-panel-lajes-terreas .bridge-element-slider{
  background:#050505;
}
#hydro-panel-lajes-terreas .bridge-element-slide{
  transform:none!important;
}
#hydro-panel-lajes-terreas .bridge-element-slide img,
#hydro-panel-lajes-terreas .bridge-element-slide.active img,
#hydro-panel-lajes-terreas .bridge-element-slider:hover .bridge-element-slide img{
  width:100%;
  height:100%;
  object-fit:contain!important;
  object-position:center center;
  transform:none!important;
}


/* Contactos finais — morada da sede em substituição dos cartões dos gerentes */
#contactos .contact-address strong{
  line-height:1.6;
}
#contactos .contact-details .contact-person{
  display:none!important;
}


/* Hydro Power Station — hero alinhado com o critério visual da Ponte */
#hydro-power-station-genk > .bridge-project-hero{
  margin: 0;
}

/* =========================================================
   Imagens principais dos 3 projetos — mostrar fotografia inteira
   sem zoom/corte, preservando a proporção original.
   ========================================================= */
#go4zero-project .go4zero-hero,
#ponte-albert-canal .bridge-project-hero,
#hydro-power-station-genk .bridge-project-hero{
  min-height:0 !important;
  aspect-ratio:auto !important;
  background:#050505;
}

#go4zero-project .go4zero-hero > img,
#ponte-albert-canal .bridge-project-hero > img,
#hydro-power-station-genk .bridge-project-hero > img{
  position:relative !important;
  inset:auto !important;
  display:block;
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  transform:none !important;
}

/* Em ecrãs pequenos, mantém a fotografia inteira e coloca a informação
   por baixo para não tapar uma imagem panorâmica. */
@media(max-width:760px){
  #go4zero-project .go4zero-hero-copy,
  #ponte-albert-canal .bridge-project-hero-copy,
  #hydro-power-station-genk .bridge-project-hero-copy{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    max-width:none;
    padding:20px 20px 24px;
    background:#070707;
  }

  #go4zero-project .go4zero-hero-shade,
  #ponte-albert-canal .bridge-project-shade,
  #hydro-power-station-genk .bridge-project-shade{
    display:none;
  }

  #go4zero-project .go4zero-hero-copy h3,
  #ponte-albert-canal .bridge-project-hero-copy h3,
  #hydro-power-station-genk .bridge-project-hero-copy h3{
    font-size:clamp(2rem,10vw,3.4rem);
  }
}


/* Formulário de orçamento — envio direto via Netlify Forms */
.netlify-honeypot{
  position:absolute!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;
  width:1px!important;
  height:1px!important;
  margin:-1px!important;
  padding:0!important;
  border:0!important;
  white-space:nowrap!important;
}
.quote-form .consent a{color:var(--gold-light);text-decoration:underline;text-underline-offset:2px}
.quote-form .submit-btn:disabled{opacity:.55;cursor:wait;transform:none}
.form-status{min-height:1.4em;margin:14px 0 0;text-align:center;font-size:.78rem;line-height:1.5}
.form-status.is-sending{color:#b9b5ab}
.form-status.is-success{color:#d9c46b}
.form-status.is-error{color:#e7a5a5}
