:root {
  --navy: #000310;
  --graphite: #0a0b0c;
  --panel: #111316;
  --panel-soft: #171a1e;
  --champagne: #bfa56f;
  --champagne-light: #d9c28d;
  --paper: #ecebe6;
  --paper-deep: #deddd7;
  --ink: #dae0e5;
  --ink-dark: #17191c;
  --muted: #aeb5bc;
  --muted-dark: #5d6267;
  --line: rgba(191, 165, 111, 0.27);
  --container: 1180px;
  --nav-offset: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--graphite);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  text-rendering: optimizeLegibility;
}

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

body.lightbox-open {
  overflow: hidden;
}

.photo-open {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
}

.photo-open-icon {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 194, 141, 0.72);
  border-radius: 50%;
  background: rgba(3, 4, 8, 0.76);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.82rem;
  opacity: 0.74;
  transform: scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.photo-open:hover .photo-open-icon,
.photo-open:focus-visible .photo-open-icon {
  background: rgba(118, 93, 41, 0.94);
  opacity: 1;
  transform: scale(1);
}

figure,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--champagne);
  font-family: "Cinzel", serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id],
header[id] {
  scroll-margin-top: calc(var(--nav-offset) + 18px);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink-dark);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--champagne-light);
  outline-offset: 4px;
}

.kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink-dark);
}

.section-light h2,
.section-light h3 {
  color: #765d29;
}

.section-light .kicker {
  color: #765d29;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.05;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading.compact h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

/* Navegação e Greek Line */
.navbar-custom {
  z-index: 1030;
  display: flex;
  flex-wrap: wrap !important;
  padding: 0;
  border-bottom: 0;
  background: rgba(10, 11, 12, 0.97);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar-custom > .container {
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand img {
  width: 138px;
  height: auto;
}

.navbar-custom .nav-link {
  margin: 0 8px;
  color: var(--ink) !important;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus-visible {
  color: var(--champagne) !important;
}

.navbar-toggler {
  border: 1px solid rgba(191, 165, 111, 0.45);
  border-radius: 2px;
  box-shadow: none !important;
}

.navbar-toggler i {
  color: var(--champagne);
}

.greek-line-container {
  flex: 0 0 100%;
  width: 100%;
  height: 35px;
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 165, 111, 0.25);
  background: var(--graphite);
}

.greek-line {
  width: 200%;
  height: 100%;
  background-image: url("https://www.virtualeestudio.com.br/images/greekShapeLine.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 28px;
  opacity: 0.4;
  animation: move-greek-line 35s linear infinite;
  will-change: transform;
}

@keyframes move-greek-line {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.photo-hero {
  position: relative;
  min-height: 100svh;
  padding: 188px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(191, 165, 111, 0.14), transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(73, 92, 119, 0.15), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--graphite) 72%);
}

.photo-hero::after {
  content: "VEEV / PHOTOGRAPHY";
  position: absolute;
  right: -38px;
  bottom: 22px;
  color: rgba(218, 224, 229, 0.035);
  font-family: "Cinzel", serif;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #c9d0d6;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 2px solid var(--champagne);
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--champagne);
  color: #090a0b;
}

.button-primary:hover {
  border-color: #fff;
  background: #fff;
  color: #090a0b;
}

.button-secondary {
  background: transparent;
  color: var(--champagne);
}

.button-secondary:hover {
  background: rgba(191, 165, 111, 0.1);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  padding: 17px 14px 0 0;
  color: #aeb5bc;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
}

.hero-contact-sheet {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 38px);
  gap: 12px;
  min-width: 0;
}

.hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 194, 141, 0.52);
  background: #050608;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.hero-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.87) contrast(1.04);
  transition: filter 480ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-frame .photo-open {
  height: 100%;
}

.hero-frame:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.hero-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 8, 0.92));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-frame figcaption span {
  color: var(--champagne-light);
}

.hero-frame-main {
  grid-column: 1 / 8;
  grid-row: 2 / 13;
}

.hero-frame-main img {
  object-position: center 20%;
}

.hero-frame-product {
  grid-column: 8 / 13;
  grid-row: 1 / 7;
}

.hero-frame-event {
  grid-column: 8 / 13;
  grid-row: 7 / 12;
}

/* Introdução */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

.intro h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.75vw, 3.7rem);
  line-height: 1.1;
  text-wrap: balance;
}

.intro-copy {
  padding-top: 38px;
  border-top: 1px solid rgba(118, 93, 41, 0.35);
}

.intro-copy p {
  color: #373a3e;
  font-size: 1.08rem;
  line-height: 1.82;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

/* Aplicações */
.services {
  background: var(--graphite);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 260px;
  padding: 32px 28px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 72%);
  transition: background 220ms ease;
}

.service-list article:hover {
  background: rgba(191, 165, 111, 0.055);
}

.service-list article > span {
  display: block;
  margin-bottom: 52px;
  color: rgba(217, 194, 141, 0.76);
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
}

.service-list h3 {
  margin-bottom: 13px;
  font-size: 1.23rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

/* Produto */
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.product-proof {
  position: relative;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(118, 93, 41, 0.4);
  background: #080b13;
  box-shadow: 18px 20px 0 rgba(118, 93, 41, 0.12);
}

.product-proof img {
  width: 100%;
  height: auto;
}

.product-proof .photo-open {
  background: #05070c;
}

.product-proof figcaption {
  margin-top: 14px;
  color: #c9c8c3;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
}

.product-copy > p {
  color: #3c4044;
  line-height: 1.78;
}

.method-points {
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid rgba(118, 93, 41, 0.28);
  list-style: none;
}

.method-points li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid rgba(118, 93, 41, 0.2);
  color: #272a2d;
  font-weight: 600;
}

.method-points li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #876b33;
  transform: rotate(45deg);
}

.scope-note {
  padding: 16px 18px;
  border-left: 3px solid #876b33;
  background: rgba(118, 93, 41, 0.08);
  color: #4c5054 !important;
  font-size: 0.88rem;
}

/* Portfólio */
.portfolio {
  background:
    radial-gradient(circle at 78% 28%, rgba(191, 165, 111, 0.09), transparent 26%),
    var(--navy);
}

.portfolio-heading {
  margin-inline: auto;
  text-align: center;
}

.portfolio-heading h2,
.portfolio-heading p {
  margin-inline: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 165, 111, 0.26);
  background: var(--panel);
}

.portfolio-card .photo-open {
  aspect-ratio: 16 / 10;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: filter 400ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-card:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.portfolio-card figcaption {
  min-height: 98px;
  padding: 19px 20px 20px;
  border-top: 1px solid rgba(191, 165, 111, 0.2);
}

.portfolio-card strong,
.portfolio-card span {
  display: block;
}

.portfolio-card strong {
  margin-bottom: 6px;
  color: var(--champagne-light);
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
}

.portfolio-card span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.portfolio-link {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.portfolio-link p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-link a,
.text-link {
  color: var(--champagne-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.portfolio-link a:hover,
.text-link:hover {
  color: #fff;
}

/* Processo */
.process-section {
  background: var(--graphite);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > div {
  display: flex;
  gap: 22px;
  align-items: baseline;
}

.process-list span {
  color: rgba(217, 194, 141, 0.72);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Condições de contratação */
.conditions-heading {
  max-width: 930px;
}

.conditions-heading p {
  color: #4e5358;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(118, 93, 41, 0.3);
  border-left: 1px solid rgba(118, 93, 41, 0.3);
}

.conditions-grid article {
  min-height: 310px;
  padding: 30px 27px 32px;
  border-right: 1px solid rgba(118, 93, 41, 0.3);
  border-bottom: 1px solid rgba(118, 93, 41, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.conditions-grid article > span {
  display: block;
  margin-bottom: 36px;
  color: #876b33;
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
}

.conditions-grid h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.conditions-grid p {
  margin-bottom: 0;
  color: #454a4f;
  font-size: 0.92rem;
  line-height: 1.72;
}

/* Distribuição */
.distribution {
  border-top: 1px solid rgba(191, 165, 111, 0.22);
  border-bottom: 1px solid rgba(191, 165, 111, 0.22);
  background: #121826;
}

.distribution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.distribution-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.08;
}

.distribution-copy p {
  max-width: 690px;
  margin-bottom: 25px;
  color: #b8c0c8;
  line-height: 1.78;
}

.channel-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.channel-list li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #d5dbe1;
  font-weight: 600;
}

.channel-list span {
  color: var(--champagne);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
}

/* Direção */
.direction {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  color: var(--ink-dark);
}

.direction::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(118, 93, 41, 0.24);
}

.direction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 9vw, 130px);
}

.direction h2 {
  margin-bottom: 0;
  color: #765d29;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 1.08;
}

.direction-copy p {
  color: #363a3e;
  line-height: 1.8;
}

.direction-copy .button-secondary {
  margin-top: 13px;
  color: #765d29;
  border-color: #765d29;
}

.direction-copy .button-secondary:hover {
  background: #765d29;
  color: #fff;
}

/* Perguntas */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 155px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

.faq-heading p {
  color: var(--muted-dark);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgba(118, 93, 41, 0.35);
}

.faq-list details {
  border-bottom: 1px solid rgba(118, 93, 41, 0.3);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: #25282b;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 2px;
  color: #765d29;
  font-family: "Inter", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 45px 24px 0;
  color: #4d5257;
  line-height: 1.72;
}

/* CTA e relacionados */
.photo-cta {
  padding: 112px 20px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(191, 165, 111, 0.15), transparent 46%),
    var(--navy);
}

.photo-cta h2 {
  max-width: 950px;
  margin: 0 auto 20px;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 1.05;
}

.photo-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #bdc5cc;
  line-height: 1.72;
}

.related {
  background: var(--graphite);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-grid a {
  min-height: 160px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.related-grid a:hover {
  background: rgba(191, 165, 111, 0.06);
}

.related-grid strong,
.related-grid span {
  display: block;
}

/* Ampliação das fotografias */
.photo-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(18px, 3vw, 42px);
  border: 0;
  background: transparent;
  color: #fff;
}

.photo-lightbox[open] {
  display: grid;
  place-items: center;
}

.photo-lightbox::backdrop {
  background: rgba(0, 3, 16, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: min(1400px, 100%);
  height: 100%;
  place-items: center;
}

.lightbox-shell figure {
  display: grid;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox-shell img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 132px);
  border: 1px solid rgba(217, 194, 141, 0.5);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  object-fit: contain;
}

.lightbox-shell figcaption {
  width: 100%;
  margin-top: 13px;
  color: #d4d8dc;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(217, 194, 141, 0.72);
  border-radius: 50%;
  background: rgba(3, 4, 8, 0.82);
  color: #fff;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover {
  background: #765d29;
  transform: scale(1.04);
}

.related-grid strong {
  margin-bottom: 10px;
  color: var(--champagne);
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.related-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Rodapé e WhatsApp */
.whatsapp {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 1.65rem;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp:hover {
  background: #20bd57;
  color: #fff;
  transform: translateY(-3px);
}

.footer-greek-line {
  border-top: 1px solid rgba(191, 165, 111, 0.18);
}

footer {
  padding: 50px 0;
  background: #050607;
  color: #92999f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 50px;
  align-items: end;
}

footer img {
  width: 148px;
  height: auto;
  margin-bottom: 16px;
}

footer p {
  margin-bottom: 5px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #b6bdc3;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--champagne);
}

.footer-location {
  text-align: right;
}

.footer-location small {
  color: #747b81;
  font-size: 0.75rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 44px;
  }

  .hero-contact-sheet {
    grid-template-rows: repeat(12, 34px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: 34px 1fr;
    padding-top: 11px;
    border-bottom: 1px solid rgba(191, 165, 111, 0.12);
  }

  .hero-facts span {
    margin-bottom: 0;
  }

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

@media (max-width: 991px) {
  :root {
    --nav-offset: 112px;
  }

  .navbar-custom > .container {
    min-height: 72px;
  }

  .navbar-collapse {
    padding: 12px 0 18px;
    border-top: 1px solid rgba(191, 165, 111, 0.16);
  }

  .navbar-custom .nav-link {
    margin: 0;
    padding: 9px 0;
  }

  .photo-hero {
    padding-top: 160px;
  }

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

  .hero-copy h1 {
    max-width: 830px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts li {
    display: block;
    border-bottom: 0;
  }

  .hero-contact-sheet {
    width: min(760px, 100%);
    grid-template-rows: repeat(12, 42px);
    margin-inline: auto;
  }

  .intro-grid,
  .product-grid,
  .distribution-grid,
  .direction-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-grid {
    gap: 58px;
  }

  .product-proof {
    width: min(760px, 100%);
  }

  .direction::before {
    display: none;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-location {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .greek-line-container {
    height: 30px;
  }

  .greek-line {
    background-size: auto 24px;
  }

  .photo-hero {
    padding: 142px 0 70px;
  }

  .photo-hero::after {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: 36px 1fr;
    padding: 12px 0;
    border-bottom: 1px solid rgba(191, 165, 111, 0.13);
  }

  .hero-contact-sheet {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .hero-frame-main {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 430px;
  }

  .hero-frame-product,
  .hero-frame-event {
    grid-column: 2;
    min-height: 210px;
  }

  .hero-frame-product { grid-row: 1; }
  .hero-frame-event { grid-row: 2; }

  .hero-frame figcaption {
    display: block;
    font-size: 0.58rem;
  }

  .hero-frame figcaption span {
    display: none;
  }

  .intro-copy {
    padding-top: 28px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: 0;
  }

  .service-list article > span {
    margin-bottom: 30px;
  }

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

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

  .conditions-grid article {
    min-height: 0;
  }

  .portfolio-link {
    display: block;
  }

  .portfolio-link p {
    margin-bottom: 18px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .related-grid a {
    min-height: 0;
  }

  .photo-cta {
    padding: 86px 14px;
  }

  .lightbox-shell img {
    max-height: calc(100dvh - 112px);
  }

  .lightbox-close {
    top: 2px;
    right: 2px;
    width: 46px;
    height: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-location {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hero-contact-sheet {
    grid-template-columns: 1fr 1fr;
  }

  .hero-frame-main {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 480px;
  }

  .hero-frame-product,
  .hero-frame-event {
    min-height: 185px;
  }

  .hero-frame-product {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-frame-event {
    grid-column: 2;
    grid-row: 2;
  }

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

  .portfolio-wide {
    grid-column: auto;
  }

  .product-proof {
    padding: 10px;
    box-shadow: 9px 10px 0 rgba(118, 93, 41, 0.12);
  }

  .whatsapp {
    bottom: 14px;
    left: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .greek-line {
    animation: none !important;
  }
}

@media print {
  .navbar-custom,
  .whatsapp,
  .footer-greek-line {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .photo-hero {
    min-height: 0;
    padding-top: 40px;
  }
}
