/* ============================================================
   ETMO JARDINS — Sections
   ============================================================ */

/* universal section header */
.sec { padding-block: clamp(72px, 11vw, 168px); position: relative; }
/* seção do embed do avatar: sem padding inferior no desktop; metade no mobile */
.avatar-ia { padding-bottom: 0; }
@media (max-width: 760px) { .avatar-ia { padding-bottom: clamp(36px, 5.5vw, 84px); } }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 72px); }
.sec-head__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.1rem, 4.6vw, 4rem); line-height: 1.0; letter-spacing: -0.01em; max-width: 16ch; }
.sec-head__title em { font-style: italic; }
.sec-head__aside { max-width: 38ch; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- LEGADO / intro ---------- */
.legado { background: var(--paper); }
.legado__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.legado__text { max-width: 30rem; }
.legado__mono { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--bronze); margin-bottom: 1.6rem; }
.legado__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 1.8rem; }
.legado__title em { font-style: italic; }
.spec-list { list-style: none; margin-top: 2rem; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.spec-list .k { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: var(--taupe); align-self: center; }
.spec-list .v { font-family: var(--serif); font-size: 1.4rem; color: var(--brown); }
.legado__fig { position: relative; }
.legado__fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.legado__fig .tag { position: absolute; left: 18px; bottom: 18px; color: var(--cream); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; background: rgba(20,12,8,0.35); backdrop-filter: blur(6px); padding: 9px 15px; }

/* ---------- AWARDS strip ---------- */
.awards { background: var(--ink); color: var(--cream); padding-block: clamp(48px, 7vw, 96px); }
.awards__row { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.awards__lead { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.2; font-weight: 300; }
.awards__lead em { font-style: italic; color: var(--cream); }
.awards__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.award { border-left: 1px solid var(--line-light); padding-left: 1.3rem; }
.award .ord { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--cream); opacity: 0.6; }
.award__ico { width: 30px; height: 30px; display: block; color: var(--cream); opacity: 0.9; margin-bottom: 0.9rem; }
.award .cat { font-size: 0.92rem; letter-spacing: 0.02em; line-height: 1.45; margin-top: 0.5rem; opacity: 0.92; }
.award .src { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-top: 0.8rem; }

/* ---------- MANIFESTO / curvas + vídeo ---------- */
.manifesto { background: var(--cream-2); }
.manifesto__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.manifesto__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -0.01em; max-width: 18ch; }
.manifesto__title em { font-style: italic; }
.manifesto__aside { max-width: 42ch; justify-self: end; }
.manifesto__embed { width: 100%; }
.manifesto__text { max-width: 32rem; }
.video {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink);
  cursor: pointer;
}
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity 0.6s; }
.video:hover img { transform: scale(1.04); opacity: 0.85; }
.video__play {
  position: absolute; inset: 0; display: grid; place-content: center; z-index: 2;
}
.video__play .disc {
  width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--cream);
  display: grid; place-content: center; color: var(--cream);
  background: rgba(20,12,8,0.2); transition: 0.45s var(--ease);
}
.video:hover .video__play .disc { background: var(--cream); color: var(--brown); transform: scale(1.08); }
.video__label { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--cream); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- VIDEO EMBED (responsivo) ---------- */
.embed { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); border: 1px solid var(--line); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.manifesto .embed { border-color: var(--line); }

/* ---------- VÍDEOS (legado · 2 vídeos) ---------- */
.videos { background: var(--paper); }
.videos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.vcard__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; margin: 1.4rem 0 0.8rem; color: var(--brown); }
.vcard__text { font-size: 0.98rem; line-height: 1.7; color: var(--taupe-2); max-width: 44ch; }

/* ---------- DEPOIMENTO (retrato) ---------- */
.depo { background: var(--cream-2); }
.depo__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.depo__fig { position: relative; }
.depo__fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.depo__fig .frame { position: absolute; inset: 14px; border: 1px solid var(--line-light); pointer-events: none; }
.depo__mark { font-family: var(--serif); font-size: 5rem; line-height: 0.6; color: var(--bronze); opacity: 0.4; display: block; height: 2.4rem; }
.depo blockquote { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.26; max-width: 24ch; margin: 1.5rem 0 2.2rem; color: var(--brown); }
.depo .who { font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); }
.depo .role { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 0.4rem; }

/* ---------- TOUR (vídeo decorado) ---------- */
.tour { background: var(--ink); color: var(--cream); text-align: center; }
.tour .sec-head__title, .tour .eyebrow { color: var(--cream); }
.tour__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.01em; max-width: 20ch; margin: 1rem auto 2.6rem; }
.tour__title em { font-style: italic; }
.tour__frame { width: 100%; margin: 0; }
.tour .embed { border-color: var(--line-light); }
.tour__link { margin-top: 2.4rem; }

/* ---------- GRUPO PLAENGE ---------- */
.grupo { background: var(--paper); }
.grupo__video { width: 100%; margin: 0 0 clamp(44px, 6vw, 76px); }
.grupo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.grupo__logo { height: 30px; width: auto; margin-bottom: 2rem; }
.grupo__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 1rem; }
.grupo__title em { font-style: italic; }
.grupo__footnote { font-size: 0.8rem; color: var(--taupe); margin-bottom: 1.5rem; }
.grupo__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.gstat { background: var(--paper); padding: clamp(20px, 3vw, 32px); }
.gstat .n { font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; color: var(--bronze); }
.gstat .n span { font-size: 0.5em; }
.gstat .l { font-size: 0.82rem; letter-spacing: 0.02em; color: var(--taupe-2); margin-top: 0.7rem; line-height: 1.5; }
.recon { border: 1px solid var(--line); background: var(--paper-2); padding: clamp(18px, 2.5vw, 26px); margin-bottom: 1px; }
.recon__title { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.1rem; }
.recon__items { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.recon__items p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.3; color: var(--brown); }
.recon__items small { display: block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-top: 0.5rem; }
.grupo__op { margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--line); padding-top: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.grupo__op h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.2; color: var(--brown); }
.comp__label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 0.9rem; }
.comp__items { display: flex; flex-wrap: wrap; gap: 0.4rem 0; }
.comp__items span { font-family: var(--serif); font-size: 1.1rem; color: var(--brown); padding-right: 1rem; margin-right: 1rem; position: relative; }
.comp__items span:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); }

/* ---------- GALERIA ---------- */
.galeria { background: var(--paper); }
.galeria__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(10px, 1.2vw, 18px);
  grid-auto-rows: minmax(140px, auto);
}
.gcard { position: relative; overflow: hidden; cursor: pointer; background: var(--cream); }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gcard:hover img { transform: scale(1.05); }
.gcard__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  color: var(--cream); z-index: 2;
  background: linear-gradient(transparent, rgba(20,12,8,0.62));
  opacity: 0; transform: translateY(8px); transition: 0.5s var(--ease);
}
.gcard:hover .gcard__cap { opacity: 1; transform: none; }
.gcard__cap .t { font-family: var(--serif); font-size: 1.3rem; line-height: 1; }
.gcard__cap .n { font-size: 0.72rem; letter-spacing: 0.16em; }
/* mosaic placement */
.gcard.g-a { grid-column: span 7; grid-row: span 2; }
.gcard.g-b { grid-column: span 5; grid-row: span 1; }
.gcard.g-c { grid-column: span 5; grid-row: span 1; }
.gcard.g-d { grid-column: span 4; grid-row: span 2; }
.gcard.g-e { grid-column: span 4; grid-row: span 1; }
.gcard.g-f { grid-column: span 4; grid-row: span 1; }
.gcard.g-g { grid-column: span 4; grid-row: span 1; }
.gcard.g-h { grid-column: span 4; grid-row: span 1; }
/* mostra só as 3 primeiras no grid; as demais ficam só no lightbox */
.galeria__grid .gcard:nth-child(n+4) { display: none; }

/* ---------- DECORADO slider ---------- */
.decorado { background: var(--ink); color: var(--cream); overflow: hidden; }
.decorado .sec-head__title { color: var(--cream); }
.decorado .eyebrow { color: var(--cream); opacity: 0.7; }
.dslider { position: relative; }
.dtrack { display: flex; gap: clamp(14px, 1.6vw, 26px); transition: transform 0.7s var(--ease); }
.dslide { flex: 0 0 auto; width: min(70vw, 760px); }
.dslide img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dslide__cap { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.dslide__cap .idx { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.dnav { display: flex; align-items: center; gap: 14px; margin-top: 2.6rem; }
.dnav button { width: 52px; height: 52px; border: 1px solid var(--line-light); border-radius: 50%; color: var(--cream); display: grid; place-content: center; transition: 0.4s var(--ease); }
.dnav button:hover { background: var(--cream); color: var(--brown); border-color: var(--cream); }
.dnav button:disabled { opacity: 0.3; pointer-events: none; }
.dprogress { flex: 1; height: 1px; background: var(--line-light); position: relative; margin-left: 1rem; }
.dprogress span { position: absolute; top: 0; left: 0; height: 100%; background: var(--cream); transition: width 0.6s var(--ease); }

/* ---------- PLANTAS ---------- */
.plantas { background: var(--cream-2); }
.plantas__panel { width: 100%; }
.plantas__filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(116px, 1fr)); gap: 8px; margin-bottom: clamp(22px, 3vw, 36px); }
.pbtn {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5em;
  padding: 1.1em 0.7em; border: 1px solid var(--line); background: var(--paper-2);
  transition: 0.35s var(--ease);
}
.pbtn__ico { width: 26px; height: 26px; color: var(--bronze); opacity: 0.9; transition: color 0.3s; }
.pbtn .area { font-family: var(--serif); font-size: 1.3rem; color: var(--brown); transition: 0.3s; line-height: 1; }
.pbtn .sub { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); line-height: 1.35; }
.pbtn:hover { border-color: var(--brown); }
.pbtn.is-active { background: var(--brown); border-color: var(--brown); }
.pbtn.is-active .pbtn__ico { color: var(--cream); }
.pbtn.is-active .area { color: var(--cream); }
.pbtn.is-active .sub { color: rgba(230,222,206,0.8); }

.plantas__stage { position: relative; background: var(--paper-2); border: 1px solid var(--line); padding: clamp(18px, 3vw, 40px); }
.plantas__view { display: none; }
.plantas__view.is-active { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 30px); }
.plantas__img { position: relative; width: 100%; height: clamp(420px, 62vh, 700px); background: var(--white); border: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: center; padding: clamp(12px, 2vw, 24px); }
.plantas__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; background: var(--white); cursor: zoom-in; }
.plantas__meta { order: -1; display: flex; flex-wrap: wrap; align-items: center; column-gap: clamp(1.6rem, 4vw, 3.6rem); row-gap: 1.1rem; border-bottom: 1px solid var(--line); padding-bottom: clamp(18px, 2.5vw, 26px); }
.plantas__meta .area-lg { font-family: var(--serif); font-size: clamp(2.2rem, 3.8vw, 3.2rem); line-height: 1; color: var(--brown); margin: 0; }
.plantas__meta .area-lg sup { font-size: 0.4em; vertical-align: super; }
.plantas__meta .config { font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin: 0; }
.plantas__meta dl { display: flex; flex-wrap: wrap; gap: 1rem 2.6rem; border-top: none; margin-left: auto; }
.plantas__meta .pair { display: flex; flex-direction: column; gap: 0.25rem; padding: 0; border-bottom: none; }
.plantas__meta dt { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); align-self: auto; }
.plantas__meta dd { font-size: 1.05rem; color: var(--brown); text-align: left; }
.plantas__note { flex: 0 0 100%; font-size: 0.76rem; color: var(--taupe); margin-top: 0.3rem; line-height: 1.6; }
.zoom-hint { position: absolute; right: 14px; top: 14px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); display: inline-flex; align-items: center; gap: 7px; background: var(--white); padding: 7px 11px; border: 1px solid var(--line); }

/* ---------- DECORADO (grid de ambientes) ---------- */
.decorado-grid { background: var(--ink); color: var(--cream); }
.decorado-grid .sec-head__title { color: var(--cream); }
.decorado-grid .eyebrow { color: var(--cream); opacity: 0.72; }
.decorado-grid .sec-head__aside { color: rgba(230,222,206,0.7); }
.dgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.dgcard { position: relative; overflow: hidden; cursor: pointer; margin: 0; background: #1c110b; }
.dgcard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.1s var(--ease); display: block; }
.dgcard:hover img { transform: scale(1.05); }
.dgcard figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; z-index: 2;
  font-size: 0.82rem; letter-spacing: 0.02em; color: var(--cream);
  background: linear-gradient(transparent, rgba(20,12,8,0.72));
  opacity: 0; transform: translateY(8px); transition: 0.45s var(--ease);
}
.dgcard:hover figcaption { opacity: 1; transform: none; }

/* ---------- IMPLANTAÇÃO ---------- */
.implantacao { background: var(--paper); }
.impl__tabs { display: flex; gap: 6px; margin-bottom: 2.2rem; flex-wrap: wrap; }
.impl__tabs button { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.85em 1.4em; border: 1px solid var(--line); color: var(--taupe-2); transition: 0.35s var(--ease); }
.impl__tabs button:hover { border-color: var(--brown); color: var(--brown); }
.impl__tabs button.is-active { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.impl__stage { background: var(--cream-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.impl__view { display: none; padding: clamp(16px, 3vw, 36px); }
.impl__view.is-active { display: flex; flex-direction: column; gap: clamp(18px, 2.5vw, 28px); }
.impl__plan { min-width: 0; }
.impl__plan img { width: 100%; object-fit: contain; }
.impl__legend { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.impl__legend__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.6rem); letter-spacing: 0.06em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.1rem; }
.leg {
  list-style: none; display: grid; grid-auto-flow: column;
  grid-template-rows: repeat(4, auto); grid-auto-columns: max-content;
  column-gap: clamp(1.6rem, 3.5vw, 3.6rem); row-gap: 0.6rem;
  overflow-x: auto; padding-bottom: 0.9rem; scrollbar-width: thin;
}
.leg li { display: flex; gap: 0.6em; align-items: baseline; white-space: nowrap; font-size: 0.96rem; line-height: 1.4; color: var(--brown); }
.leg .n { flex: 0 0 auto; min-width: 1.7em; color: var(--bronze); font-variant-numeric: tabular-nums; }
.leg li.sub { color: var(--taupe-2); font-size: 0.9rem; }
.leg li.sub .n { min-width: 2.2em; color: var(--taupe); }
.leg::-webkit-scrollbar { height: 5px; }
.leg::-webkit-scrollbar-track { background: var(--line-soft); }
.leg::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 5px; }

/* ---------- LOCALIZAÇÃO ---------- */
.local { background: var(--ink); color: var(--cream); }
.local .sec-head__title { color: var(--cream); }
.local .eyebrow { color: var(--cream); opacity: 0.7; }
.local__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.local__map { position: relative; border: 1px solid var(--line-light); overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream); cursor: zoom-in; }
.local__map .map-zoom { position: absolute; right: 14px; top: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); background: var(--cream); padding: 7px 11px; border: 1px solid var(--line); transition: 0.35s var(--ease); }
.local__map:hover .map-zoom { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.local__map img { width: 100%; height: 100%; object-fit: cover; }
.local__addr { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.2; font-weight: 300; margin-bottom: 1.8rem; }
.local__addr em { font-style: italic; }
.poi { list-style: none; border-top: 1px solid var(--line-light); }
.poi li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-light); font-size: 1.1rem; }
.poi .p { opacity: 0.92; }
.poi .d { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--cream); opacity: 0.72; }

/* ---------- CONTATO ---------- */
.contato { background: var(--cream); }
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 110px); align-items: center; }
.contato__lead .display { font-size: clamp(2.2rem, 4.6vw, 4rem); }
.contato__lead p.body { margin-top: 1.6rem; }
.contato__contacts { margin-top: 2.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contato__contacts a { font-family: var(--serif); font-size: 1.5rem; color: var(--brown); display: inline-flex; align-items: center; gap: 0.7em; width: fit-content; }
.contato__contacts a .lbl { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.form { background: var(--paper-2); padding: clamp(26px, 4vw, 52px); border: 1px solid var(--line); }
.form__row { position: relative; margin-bottom: 1.7rem; }
.form__row input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.8rem 0; font-family: var(--sans); font-weight: 300; font-size: 1rem; color: var(--brown);
  transition: border-color 0.4s;
}
.form__row input::placeholder { color: transparent; }
.form__row label { position: absolute; left: 0; top: 0.8rem; color: var(--taupe); font-size: 1rem; pointer-events: none; transition: 0.3s var(--ease); }
.form__row input:focus { outline: none; border-color: var(--brown); }
.form__row input:focus + label,
.form__row input:not(:placeholder-shown) + label { top: -0.7rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.form__checks { display: flex; flex-direction: column; gap: 0.9rem; margin: 0.5rem 0 1.8rem; }
.check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; line-height: 1.5; color: var(--taupe-2); cursor: pointer; }
.check input { margin-top: 3px; accent-color: var(--brown); width: 15px; height: 15px; flex: 0 0 auto; }
.check a { text-decoration: underline; text-underline-offset: 2px; }
.form .btn { width: 100%; justify-content: center; }
.form__ok { display: none; text-align: center; padding: 1rem 0; color: var(--bronze); font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(56px, 7vw, 90px) 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer__brand .m { font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0.04em; }
.footer__brand .s { font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase; opacity: 0.7; margin-top: 0.4rem; }
.footer__brand p { max-width: 30ch; margin-top: 1.6rem; font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; opacity: 0.9; margin-bottom: 0.7rem; transition: opacity 0.3s; }
.footer__col a:hover { opacity: 1; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: 0.74rem; letter-spacing: 0.06em; opacity: 0.55; text-transform: uppercase; }

/* ---------- GALLERY LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,12,8,0.94); display: none; opacity: 0; transition: opacity 0.4s; }
.lightbox.open { display: block; opacity: 1; }
.lightbox__img { position: absolute; inset: clamp(40px, 7vh, 90px) clamp(20px, 8vw, 140px); display: grid; place-content: center; }
.lightbox__img img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 40px 120px -40px rgba(0,0,0,0.7); }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 34px; text-align: center; color: var(--cream); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; }
.lightbox__cap .cur { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; opacity: 0.6; margin-left: 0.6em; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: 1px solid var(--line-light); border-radius: 50%; color: var(--cream); display: grid; place-content: center; transition: 0.4s var(--ease); }
.lb-btn:hover { background: var(--cream); color: var(--brown); }
.lb-prev { left: clamp(14px, 3vw, 40px); }
.lb-next { right: clamp(14px, 3vw, 40px); }
.lb-close { position: absolute; top: 26px; right: 26px; width: 48px; height: 48px; border: 1px solid var(--line-light); border-radius: 50%; color: var(--cream); display: grid; place-content: center; transition: 0.4s var(--ease); }
.lb-close:hover { background: var(--cream); color: var(--brown); transform: rotate(90deg); }

/* ---------- WHATSAPP float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--brown); color: var(--cream); display: grid; place-content: center; box-shadow: 0 18px 40px -16px rgba(38,22,16,0.7); transition: 0.4s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: var(--ink); }

/* ---------- MOBILE NAV ---------- */
.mnav { position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--cream); transform: translateX(100%); transition: transform 0.55s var(--ease); display: flex; flex-direction: column; padding: 28px var(--pad); }
.mnav.open { transform: none; }
.mnav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; }
.mnav__close { font-size: 1.6rem; line-height: 1; }
.mnav__links { display: flex; flex-direction: column; gap: 0.2rem; margin: auto 0; }
.mnav__links a { font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 2.6rem); padding: 0.3rem 0; }
.mnav__foot { display: flex; gap: 1.4rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: block; }
  .awards__row { grid-template-columns: 1fr; }
  .plantas__layout { grid-template-columns: 1fr; }
  .plantas__view.is-active { grid-template-columns: 1fr; }
  .impl__view.is-active { grid-template-columns: 1fr; }
  .impl__legend { position: static; }
}
@media (max-width: 820px) {
  .legado__grid, .manifesto__grid, .local__grid, .contato__grid,
  .videos__grid, .depo__grid, .grupo__grid { grid-template-columns: 1fr; }
  .dgrid { grid-template-columns: repeat(2, 1fr); }
  .dgcard figcaption { opacity: 1; transform: none; position: static; background: none; color: var(--cream); padding: 0.7rem 0 0; }
  .plantas__meta dl { margin-left: 0; }
  .manifesto__head { grid-template-columns: 1fr; gap: 1.4rem; align-items: start; }
  .manifesto__aside { justify-self: start; }
  .grupo__op { grid-template-columns: 1fr; gap: 1.6rem; }
  .recon__items { grid-template-columns: 1fr; gap: 1rem; }
  .depo__fig img { aspect-ratio: 4 / 3; }
  .legado__fig img { aspect-ratio: 16 / 11; }
  .awards__items { grid-template-columns: 1fr; gap: 0; }
  .award { border-left: 0; border-top: 1px solid var(--line-light); padding: 1.1rem 0 0; padding-left: 0; }
  .galeria__grid { grid-auto-rows: minmax(110px, auto); }
  .gcard.g-a { grid-column: span 12; grid-row: span 2; }
  .gcard.g-b, .gcard.g-c { grid-column: span 6; }
  .gcard.g-d { grid-column: span 6; grid-row: span 2; }
  .gcard.g-e, .gcard.g-f, .gcard.g-g, .gcard.g-h { grid-column: span 6; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .dslide { width: 86vw; }
}
@media (max-width: 520px) {
  .gcard.g-b, .gcard.g-c, .gcard.g-e, .gcard.g-f, .gcard.g-g, .gcard.g-h { grid-column: span 12; }
  .hero-switch { left: var(--pad); right: var(--pad); justify-content: center; }
}
