:root {
  --bg: #f4efe6;
  --bg-soft: #fffdf9;
  --ink: #1d1b18;
  --muted: #67615a;
  --black: #0d0c0a;
  --gold: #d8af57;
  --gold-soft: #edcf7a;
  --line: rgba(29, 27, 24, 0.12);
  --shadow: 0 20px 55px rgba(22, 18, 12, 0.11);
  --container: 1520px;
  --pad: clamp(22px, 5vw, 60px);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-soft);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container,
.footer-container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11, 10, 8, 0.96);
  border-bottom: 1px solid rgba(216, 175, 87, 0.15);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 8vw, 160px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: max-content;
}
.brand-symbol {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}
.brand-copy { display: grid; gap: 1px; transform: translateY(-1px); }
.brand-name {
  color: #fff8ec;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: .88;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-subtitle {
  color: var(--gold-soft);
  font-size: clamp(.65rem, .8vw, .78rem);
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 3.6vw, 60px);
}
.primary-nav a {
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: color .2s ease, transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: #fff; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only),
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: absolute;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle.is-open span:not(.sr-only) { opacity: 0; }
.menu-toggle.is-open::before { transform: rotate(45deg); }
.menu-toggle.is-open::after { transform: rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: min(740px, calc(100svh - var(--header-h)));
  color: #fff;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,7,6,.82) 0%, rgba(7,7,6,.66) 33%, rgba(7,7,6,.28) 70%, rgba(7,7,6,.16) 100%),
    linear-gradient(180deg, rgba(8,8,7,.08) 0%, rgba(8,8,7,.13) 46%, rgba(8,8,7,.58) 100%);
}
.hero-grid {
  min-height: min(740px, calc(100svh - var(--header-h)));
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(260px, 350px);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding-block: clamp(84px, 8vh, 116px) clamp(50px, 7vh, 76px);
}
.hero-content { max-width: 800px; }
.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-size: clamp(.68rem, .82vw, .82rem);
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.contact-card h3,
.quote-form h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.045em;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.7rem, 5.6vw, 7rem);
  line-height: .9;
  color: #fff;
}
.lead {
  max-width: 740px;
  margin: 30px 0 0;
  font-size: clamp(1.08rem, 1.26vw, 1.5rem);
  line-height: 1.72;
  color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #0e0b07; background: linear-gradient(135deg, #f2cf72, #cfa249); box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.btn-secondary:hover { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.1); }
.btn-full { width: 100%; }
.hero-card {
  align-self: start;
  justify-self: end;
  width: min(100%, 318px);
  margin-top: clamp(18px, 10vh, 88px);
  padding: 24px 25px 26px;
  border-left: 2px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 13, 10, .50), rgba(20, 18, 15, .34));
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
}
.hero-card span { display: block; color: var(--gold-soft); font-size: .72rem; line-height: 1; font-weight: 900; letter-spacing: .33em; text-transform: uppercase; margin-bottom: 16px; }
.hero-card strong { display: block; color: #fff; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.55rem, 2.1vw, 2.25rem); line-height: .98; letter-spacing: -.035em; }

/* SECTIONS */
.section { padding: clamp(58px, 7vw, 84px) 0; }
.section-muted { background: var(--bg); }
.section-light { background: #fffdf9; }
.section-dark { background: #0d0c0a; color: #fff; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}
.section-heading { max-width: 780px; text-align: left; }
.section-heading.centered { text-align: left; margin-inline: 0 auto; }
.section-heading-narrow { max-width: 850px; }
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 4vw, 5rem);
  line-height: .93;
}
.section-dark .section-heading h2 { color: #fff; }
.section-heading p:not(.eyebrow) {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1vw, 1.08rem);
  line-height: 1.75;
}
.section-dark .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.section-text { color: var(--muted); font-size: 1.04rem; line-height: 1.78; }
.section-text p { margin: 0; }
.section-text p + p { margin-top: 16px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.service-card {
  min-height: 204px;
  padding: 29px 30px 27px;
  border: 1px solid rgba(29,27,24,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 42px rgba(22,18,12,.06);
  position: relative;
  overflow: hidden;
}
.service-card::after { content: ""; position: absolute; right: -34px; bottom: -34px; width: 94px; height: 94px; border: 1px solid rgba(216,175,87,.22); border-radius: 999px; }
.service-card > span { color: #a77a2c; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 26px 0 10px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.75rem, 1.75vw, 2.2rem); line-height: 1; letter-spacing: -.04em; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.65; }

/* PROCESS */
.process-section { padding-block: clamp(64px, 7vw, 92px); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
  position: relative;
}
.process-grid::before { content: ""; position: absolute; top: 15px; left: 0; right: 0; height: 1px; background: rgba(216,175,87,.2); }
.process-step { position: relative; padding-top: 50px; }
.process-step::before { content: ""; position: absolute; top: 0; left: 0; width: 30px; height: 30px; border: 1px solid rgba(216,175,87,.45); border-radius: 999px; background: #0d0c0a; }
.process-step::after { content: ""; position: absolute; top: 10px; left: 10px; width: 10px; height: 10px; border-radius: 999px; background: var(--gold); }
.process-step > span { display: block; color: var(--gold-soft); font-size: .65rem; font-weight: 900; letter-spacing: .18em; margin-bottom: 12px; }
.process-step h3 { margin: 0 0 10px; color: #fff; font-size: 1rem; line-height: 1.25; }
.process-step p { margin: 0; color: rgba(255,255,255,.76); font-size: .92rem; line-height: 1.64; }

/* GALLERY */
.gallery-section .section-heading { max-width: 860px; margin-bottom: 42px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .9fr .9fr;
  grid-auto-rows: clamp(185px, 14vw, 230px);
  grid-auto-flow: dense;
  gap: clamp(14px, 1.45vw, 22px);
  align-items: stretch;
}
.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #1d1b18;
  box-shadow: 0 22px 48px rgba(22,18,12,.12);
  isolation: isolate;
}
.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .38s ease, filter .38s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.55) 100%);
  opacity: .92;
}
.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .28s ease, transform .28s ease;
}
.gallery-item figcaption strong {
  display: block;
  font-size: .82rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-item figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  line-height: 1.35;
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

/* CONTACT */
.contact-section { background: linear-gradient(180deg, #fffdf9, #f5efe5); }
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}
.contact-card,
.quote-form { border-radius: 22px; box-shadow: var(--shadow); }
.contact-card { padding: 36px 38px; color: #fff; background: radial-gradient(circle at 92% 92%, rgba(216,175,87,.15), transparent 25%), linear-gradient(135deg, #15120e, #080807); }
.contact-card h3,
.quote-form h3 { margin: 0; font-size: clamp(2.2rem, 3.1vw, 3.9rem); line-height: .95; }
.contact-card p:not(.eyebrow) { margin: 14px 0 24px; color: rgba(255,255,255,.82); line-height: 1.72; }
.contact-list { display: grid; gap: 0; margin: 18px 0 0; padding: 0; }
.contact-list div { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-list dt { margin: 0 0 5px; color: var(--gold-soft); font-size: .68rem; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; }
.contact-list dd { margin: 0; font-size: 1.05rem; font-weight: 800; line-height: 1.45; }
.contact-logo { width: 80px; margin-top: 22px; opacity: .92; filter: drop-shadow(0 10px 18px rgba(0,0,0,.32)); }
.quote-form { padding: 36px 38px; background: rgba(255,255,255,.94); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 20px; margin-top: 24px; }
.quote-form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 900; color: var(--ink); }
.quote-form > label { margin-top: 18px; }
.quote-form input,
.quote-form select,
.quote-form textarea { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(29,27,24,.13); border-radius: 12px; color: var(--ink); background: #fffdf9; outline: none; font-weight: 600; }
.quote-form textarea { min-height: 118px; padding-block: 14px; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: rgba(216,175,87,.72); box-shadow: 0 0 0 4px rgba(216,175,87,.14); }
.quote-form .btn { margin-top: 18px; }

/* FOOTER */
.site-footer { background: #050504; color: #fff; padding: 40px 0; border-top: 1px solid rgba(216,175,87,.14); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.footer-brand-block { display: flex; align-items: center; gap: 18px; max-width: 680px; }
.footer-logo { width: 58px; opacity: .9; }
.footer-brand-block strong { display: block; font-size: 1.02rem; font-weight: 900; }
.footer-brand-block p { margin: 5px 0 0; color: rgba(255,255,255,.78); }
.footer-credit { text-align: right; color: rgba(255,255,255,.78); }
.footer-credit p { margin: 0; }
.footer-credit strong { color: #fff; }

/* FLOATING CTA */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edcf72, #cfa247);
  color: #0c0905;
  font-weight: 900;
  font-size: .96rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-2px); }
.floating-whatsapp.is-hidden,
.floating-whatsapp.is-footer-visible { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --header-h: 80px; --container: 1100px; }
  .brand-symbol { width: 58px; height: 58px; }
  .brand-name { font-size: 2rem; }
  .brand-subtitle { font-size: .58rem; letter-spacing: .27em; }
  .primary-nav { gap: 26px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 76px 60px; }
  .hero-card { justify-self: start; margin-top: 0; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; }
  .gallery-item-large, .gallery-item-wide { grid-column: span 2; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; --header-h: 76px; }
  .brand-symbol { width: 48px; height: 48px; }
  .brand-name { font-size: 1.55rem; letter-spacing: .09em; }
  .brand-subtitle { font-size: .5rem; letter-spacing: .22em; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    left: auto;
    right: 18px;
    top: calc(var(--header-h) + 10px);
    width: min(232px, calc(100vw - 44px));
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid rgba(216,175,87,.16);
    border-radius: 18px;
    background: rgba(10,9,8,.96);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { display: block; padding: 10px 12px; text-align: left; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 60px 48px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .lead { font-size: 1.04rem; line-height: 1.65; }
  .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
  .process-step { padding: 0 0 0 48px; }
  .process-step::before { left: 0; top: 3px; }
  .process-step::after { top: 13px; left: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item-large, .gallery-item-wide { grid-column: auto; grid-row: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-credit { text-align: left; }
}

@media (max-width: 620px) {
  :root { --pad: 18px; }
  .brand { gap: 10px; }
  .brand-symbol { width: 42px; height: 42px; }
  .brand-name { font-size: 1.24rem; }
  .brand-subtitle { font-size: .45rem; letter-spacing: .14em; }
  .hero-grid { padding-block: 46px 38px; }
  .eyebrow { margin-bottom: 20px; letter-spacing: .22em; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 3.8rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; min-height: 52px; }
  .hero-card { width: 100%; padding: 20px; }
  .section { padding: 48px 0; }
  .section-heading h2 { font-size: clamp(2.35rem, 13vw, 3.3rem); }
  .service-card { min-height: auto; padding: 24px; }
  .contact-card, .quote-form { padding: 26px 22px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-height: 42px; padding: 0 16px; font-size: .88rem; }
}


/* =========================================================
   V7 - Acabamento funcional premium
   Escopo: orçamento, rodapé, botão WhatsApp, selects e SEO visual.
   Regra: camada modular, sem reescrever a estrutura aprovada da V6.
   ========================================================= */

:root {
  --radius-card: 20px;
  --radius-soft: 16px;
}

/* Orçamento: os dois blocos passam a trabalhar como módulos alinhados */
#orcamento.contact-section {
  position: relative;
}

#orcamento .contact-grid {
  align-items: stretch !important;
  gap: clamp(22px, 3vw, 34px) !important;
  margin-top: clamp(22px, 3vw, 30px) !important;
}

#orcamento .contact-card,
#orcamento .quote-form {
  height: 100% !important;
  border-radius: var(--radius-card) !important;
}

#orcamento .contact-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 100% !important;
  padding: clamp(28px, 3vw, 38px) !important;
  overflow: hidden !important;
}

#orcamento .contact-card .contact-list {
  margin-top: clamp(16px, 2vw, 22px) !important;
}

#orcamento .contact-card .contact-logo {
  width: clamp(58px, 5vw, 84px) !important;
  height: auto !important;
  margin-top: auto !important;
  padding-top: clamp(22px, 3vw, 36px) !important;
  opacity: .94 !important;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.38));
}

#orcamento .quote-form {
  padding: clamp(28px, 3vw, 36px) !important;
}

#orcamento .quote-form h3,
#orcamento .contact-card h3 {
  letter-spacing: -.035em;
}

#orcamento .form-grid {
  gap: clamp(12px, 1.4vw, 16px) !important;
  margin-top: clamp(16px, 2vw, 22px) !important;
}

#orcamento .form-field {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
}

#orcamento .form-field input,
#orcamento .form-field select,
#orcamento .form-field textarea {
  min-height: 48px !important;
  border-radius: 14px !important;
}

#orcamento .form-field textarea {
  min-height: 108px !important;
  resize: vertical !important;
}

#orcamento .quote-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 46px !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #9c7b38 50%),
    linear-gradient(135deg, #9c7b38 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Rodapé premium: mais delicado, editorial e menos robusto */
.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(216,175,87,.10), transparent 34%),
    linear-gradient(180deg, #0b0a08 0%, #050504 100%) !important;
  padding: clamp(22px, 3vw, 30px) 0 !important;
  border-top: 1px solid rgba(216,175,87,.18) !important;
}

.site-footer .footer-inner {
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(26px, 5vw, 80px) !important;
}

.site-footer .footer-brand-block {
  gap: 12px !important;
  max-width: 620px !important;
}

.site-footer .footer-logo {
  width: 42px !important;
  min-width: 42px !important;
  opacity: .96 !important;
  filter:
    drop-shadow(0 8px 18px rgba(216,175,87,.14))
    drop-shadow(0 1px 0 rgba(255,255,255,.16));
}

.site-footer .footer-brand-block strong {
  font-size: .88rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #fff8ec !important;
}

.site-footer .footer-brand-block p,
.site-footer .footer-credit {
  font-size: .78rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.62) !important;
}

.site-footer .footer-brand-block p {
  margin: 4px 0 0 !important;
}

.site-footer .footer-credit {
  text-align: right !important;
  min-width: max-content !important;
}

.site-footer .footer-credit strong {
  color: #e5c46f !important;
  font-weight: 800 !important;
}

/* WhatsApp flutuante: somente bolinha, elegante e independente */
.floating-whatsapp {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  right: clamp(16px, 2vw, 24px) !important;
  bottom: clamp(16px, 2vw, 24px) !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: #25d366 !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.26), 0 0 0 1px rgba(255,255,255,.18) inset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 990 !important;
}

.floating-whatsapp .whatsapp-icon {
  width: 27px !important;
  height: 27px !important;
  display: block !important;
  fill: currentColor !important;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

.floating-whatsapp.is-hidden,
.floating-whatsapp.is-footer-visible {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) scale(.96) !important;
}

/* Padronização leve de bordas sem redesenhar o site */
.service-card,
.gallery-item,
.contact-card,
.quote-form,
.process-step {
  border-radius: var(--radius-card) !important;
}

.gallery-item img {
  border-radius: inherit;
}

/* Responsivo */
@media (max-width: 900px) {
  #orcamento .contact-grid {
    grid-template-columns: 1fr !important;
  }

  #orcamento .contact-card .contact-logo {
    margin-top: 24px !important;
  }

  .site-footer .footer-inner {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .site-footer .footer-credit {
    text-align: left !important;
    min-width: 0 !important;
  }

  .floating-whatsapp {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }
}

@media (max-width: 560px) {
  #orcamento .quote-form,
  #orcamento .contact-card {
    padding: 24px 20px !important;
  }

  .site-footer {
    padding-bottom: 26px !important;
  }
}


/* =========================================================
   V8.1 - Segurança visual, LGPD e produção Hostinger
   Camada modular: não altera o layout aprovado da V8.
   ========================================================= */

.privacy-note {
  margin: 10px 0 14px;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(35, 31, 26, .68);
}

.privacy-note a,
.footer-privacy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer-privacy-link,
footer .footer-privacy-link {
  color: rgba(255,255,255,.70);
}

.footer-separator {
  color: rgba(255,255,255,.35);
}

.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 158, 79, .16), transparent 32%),
    linear-gradient(135deg, #0a0907 0%, #16120d 52%, #f3efe7 52%, #f7f2ea 100%);
  color: #1f1a14;
}

.privacy-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 86px) 0;
}

.privacy-card {
  max-width: 860px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(148, 119, 57, .18);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.privacy-card h1 {
  margin: 0 0 18px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.privacy-card h2 {
  margin: 28px 0 8px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.privacy-card p {
  color: rgba(31, 26, 20, .76);
  line-height: 1.75;
}

.privacy-card .button {
  margin-top: 24px;
}



/* =========================================================
   H1_SITE_BARROS_V1_APROVADA_COM_ANIMACAO
   Troca segura do Hero para imagens próprias da Barros.
   Mantém conteúdo solto: imagem, overlay, textos e botões seguem separados.
   ========================================================= */
.hero {
  background: #0f0f0e;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: -2;
  background-image: url("../img/hero/barros-h1-hero-casa-colina-desktop.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.035) translate3d(-0.4%, -0.2%, 0);
  animation: heroCinematicBarros 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8, 8, 7, 0.76) 0%,
      rgba(8, 8, 7, 0.62) 31%,
      rgba(8, 8, 7, 0.34) 60%,
      rgba(8, 8, 7, 0.18) 100%),
    linear-gradient(180deg,
      rgba(8, 8, 7, 0.18) 0%,
      rgba(8, 8, 7, 0.08) 45%,
      rgba(8, 8, 7, 0.54) 100%);
}

@keyframes heroCinematicBarros {
  from {
    transform: scale(1.035) translate3d(-0.4%, -0.2%, 0);
  }
  to {
    transform: scale(1.085) translate3d(0.55%, 0.35%, 0);
  }
}

@media (max-width: 1180px) {
  .hero::before {
    background-image: url("../img/hero/barros-h1-hero-casa-colina-tablet.webp");
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(90deg,
        rgba(8, 8, 7, 0.82) 0%,
        rgba(8, 8, 7, 0.68) 40%,
        rgba(8, 8, 7, 0.38) 100%),
      linear-gradient(180deg,
        rgba(8, 8, 7, 0.22) 0%,
        rgba(8, 8, 7, 0.10) 45%,
        rgba(8, 8, 7, 0.62) 100%);
  }
}

@media (max-width: 720px) {
  .hero::before {
    background-image: url("../img/hero/barros-h1-hero-casa-colina-mobile.webp");
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(8, 8, 7, 0.52) 0%,
        rgba(8, 8, 7, 0.66) 36%,
        rgba(8, 8, 7, 0.82) 100%),
      linear-gradient(90deg,
        rgba(8, 8, 7, 0.84) 0%,
        rgba(8, 8, 7, 0.60) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
    transform: scale(1.035);
  }
}


/* =========================================================
   V8.2 - Galeria real da obra Barros
   Ajuste leve, sem biblioteca externa e sem alterar Hero/Logo.
   ========================================================= */
@media (max-width: 560px) {
  .gallery-grid { grid-auto-rows: 235px; }
  .gallery-item figcaption { left: 14px; right: 14px; bottom: 13px; }
  .gallery-item figcaption span { font-size: .8rem; }
}

/* ==================================================
   AJUSTES FINAIS — GALERIA REAL, CONTRASTE E RESPONSIVO
   ================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(126, 83, 25, 0.28);
  border-radius: 999px;
  background: rgba(126, 83, 25, 0.08);
  color: #7b4f15;
  text-shadow: none;
  letter-spacing: 0.24em;
}

.section-heading.centered .eyebrow,
.centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .eyebrow,
.contact-section .eyebrow,
.footer-cta .eyebrow {
  background: rgba(212, 167, 88, 0.12);
  border-color: rgba(212, 167, 88, 0.34);
  color: #f0c46b;
}

.gallery-link {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}

.gallery-item img {
  transition: transform 420ms ease, filter 420ms ease;
  will-change: transform;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.gallery-link:focus-visible {
  outline: 3px solid rgba(212, 167, 88, 0.86);
  outline-offset: -6px;
  border-radius: inherit;
}

.contact-plain-text {
  color: inherit;
  font-weight: 700;
  word-break: break-word;
}

/* Lightbox leve da galeria */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(10px);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox__dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 14px;
}

.image-lightbox__img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  background: #16130f;
}

.image-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.5;
  text-align: center;
}

.image-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(13, 12, 10, 0.92);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: #d4a758;
  color: #111;
}

@media (min-width: 821px) and (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(220px, 30vw, 320px);
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .gallery-section .section-heading {
    margin-bottom: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .gallery-item-wide {
    aspect-ratio: 16 / 10;
  }

  .gallery-item figcaption {
    padding: 16px;
  }

  .gallery-item figcaption strong {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .gallery-item figcaption span {
    font-size: 0.82rem;
  }

  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox__img {
    max-height: 76vh;
    border-radius: 16px;
  }

  .image-lightbox__close {
    top: 8px;
    right: 8px;
  }
}


/* =========================================================
   V8.3 - Refinamento editorial dos rótulos e SEO local visual
   Escopo: remove aparência de pílula nos rótulos, preserva galeria/lightbox.
   ========================================================= */
.eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.82rem !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #7a521b !important;
  text-shadow: none !important;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  flex: 0 0 clamp(26px, 3vw, 42px);
  width: clamp(26px, 3vw, 42px);
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.section-heading.centered .eyebrow,
.centered .eyebrow {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero .eyebrow,
.section-dark .eyebrow,
.contact-card .eyebrow,
.footer-cta .eyebrow {
  color: #edcf7a !important;
}

.quote-form .eyebrow,
.contact-section > .container > .section-heading .eyebrow,
.section-light .eyebrow,
.section-muted .eyebrow {
  color: #7a521b !important;
}

.footer-service-area {
  max-width: 760px;
}

@media (max-width: 620px) {
  .eyebrow {
    gap: 0.64rem !important;
    margin-bottom: 18px !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.14em !important;
  }

  .eyebrow::before {
    flex-basis: 24px;
    width: 24px;
  }
}


/* =========================================================
   V8.4 - Acabamento pré-final: lightbox limpo e contato premium
   Escopo: remove texto do lightbox e equilibra o card Contato direto.
   ========================================================= */
.image-lightbox__dialog {
  gap: 0 !important;
}

.image-lightbox__caption {
  display: none !important;
}

#orcamento .contact-card {
  min-height: 100% !important;
}

#orcamento .contact-card .contact-logo {
  display: block !important;
  width: clamp(118px, 10vw, 156px) !important;
  max-width: 46% !important;
  height: auto !important;
  margin: auto auto 0 !important;
  padding-top: clamp(28px, 5vw, 54px) !important;
  opacity: .96 !important;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.42)) !important;
}

@media (max-width: 900px) {
  #orcamento .contact-card .contact-logo {
    width: clamp(98px, 24vw, 132px) !important;
    max-width: 40% !important;
    padding-top: 30px !important;
  }
}

@media (max-width: 560px) {
  #orcamento .contact-card {
    text-align: left !important;
  }

  #orcamento .contact-card .contact-logo {
    width: 104px !important;
    max-width: 42% !important;
    margin: 28px auto 0 !important;
    padding-top: 0 !important;
  }
}

/* =========================================================
   V8.5 - Acabamento final do formulário e assinatura de contato
   Escopo: bloqueia resize do textarea, refina foco e centraliza marca no card preto.
   Mantém Hero, galeria, lightbox e copy principal preservados.
   ========================================================= */
#orcamento .quote-form input,
#orcamento .quote-form select,
#orcamento .quote-form textarea {
  font-size: 16px !important;
  line-height: 1.45 !important;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#orcamento .form-field textarea,
#orcamento .quote-form textarea {
  min-height: 136px !important;
  padding: 16px 18px !important;
  resize: none !important;
  overflow: auto !important;
}

#orcamento .quote-form input:focus,
#orcamento .quote-form select:focus,
#orcamento .quote-form textarea:focus,
#orcamento .quote-form input:focus-visible,
#orcamento .quote-form select:focus-visible,
#orcamento .quote-form textarea:focus-visible {
  border-color: rgba(173, 126, 44, .82) !important;
  background-color: #fffefa !important;
  box-shadow: 0 0 0 4px rgba(216, 175, 87, .16), 0 10px 26px rgba(22, 18, 12, .06) !important;
}

#orcamento .contact-card .contact-brand-signature {
  width: min(100%, 320px) !important;
  min-height: clamp(210px, 20vw, 292px) !important;
  margin: auto auto 0 !important;
  padding-top: clamp(30px, 5vw, 58px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#orcamento .contact-card .contact-brand-signature .contact-logo {
  display: block !important;
  width: clamp(142px, 11vw, 186px) !important;
  max-width: 70% !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  opacity: .97 !important;
  filter: drop-shadow(0 20px 38px rgba(0,0,0,.46)) !important;
}

#orcamento .contact-card .contact-brand-copy {
  margin-top: 16px !important;
  display: grid !important;
  gap: 8px !important;
  justify-items: center !important;
}

#orcamento .contact-card .contact-brand-copy strong {
  color: #fff8ec !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 2.55vw, 3rem) !important;
  line-height: .9 !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}

#orcamento .contact-card .contact-brand-copy span {
  color: var(--gold-soft) !important;
  font-size: clamp(.62rem, .78vw, .78rem) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: .34em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  #orcamento .contact-card .contact-brand-signature {
    width: min(100%, 280px) !important;
    min-height: 210px !important;
    padding-top: 30px !important;
  }

  #orcamento .contact-card .contact-brand-signature .contact-logo {
    width: clamp(126px, 28vw, 164px) !important;
    max-width: 68% !important;
  }
}

@media (max-width: 560px) {
  #orcamento .form-field textarea,
  #orcamento .quote-form textarea {
    min-height: 128px !important;
  }

  #orcamento .contact-card .contact-brand-signature {
    min-height: 178px !important;
    width: min(100%, 250px) !important;
    margin: 24px auto 0 !important;
    padding-top: 0 !important;
  }

  #orcamento .contact-card .contact-brand-signature .contact-logo {
    width: 128px !important;
    max-width: 64% !important;
  }

  #orcamento .contact-card .contact-brand-copy {
    margin-top: 12px !important;
    gap: 6px !important;
  }

  #orcamento .contact-card .contact-brand-copy strong {
    font-size: 2rem !important;
    letter-spacing: .16em !important;
  }

  #orcamento .contact-card .contact-brand-copy span {
    font-size: .56rem !important;
    letter-spacing: .24em !important;
  }
}


/* =========================================================
   SEÇÃO VÍDEO — Video Reel Premium
   Layout split: texto à esquerda / player vertical à direita.
   Player estilizado para YouTube Shorts (proporção 9:16).
   ========================================================= */

.video-reel-section {
  background:
    radial-gradient(ellipse 60% 50% at 72% 50%, rgba(216, 175, 87, 0.06), transparent),
    #0d0c0a;
  overflow: hidden;
  position: relative;
}

/* Linha decorativa sutil à esquerda */
.video-reel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(216,175,87,.18) 30%, rgba(216,175,87,.18) 70%, transparent);
  pointer-events: none;
}

.video-reel-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

/* ---- Bloco de texto ---- */
.video-reel-text {
  max-width: 560px;
}

.video-reel-text h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.65rem, 3.8vw, 5rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
  color: #fff;
}

.video-reel-lead {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--gold-soft);
}

.video-reel-divider {
  width: 48px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.video-reel-body {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.96rem, 1vw, 1.05rem);
  line-height: 1.78;
  max-width: 440px;
}

/* ---- Player wrap ---- */
.video-reel-player-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Cantos decorativos ao redor do player */
.video-reel-frame-deco {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  z-index: 1;
}

.vr-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(216,175,87,.52);
  border-style: solid;
}
.vr-corner--tl { top: 0; left: 0;  border-width: 1px 0 0 1px; border-radius: 5px 0 0 0; }
.vr-corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; border-radius: 0 5px 0 0; }
.vr-corner--bl { bottom: 0; left: 0;  border-width: 0 0 1px 1px; border-radius: 0 0 0 5px; }
.vr-corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; border-radius: 0 0 5px 0; }

/* Player em si — proporção vertical 9:16 para Shorts */
.video-reel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0908;
  box-shadow:
    0 0 0 1px rgba(216,175,87,.18),
    0 28px 70px rgba(0,0,0,.52),
    0 0 60px rgba(216,175,87,.06);
  z-index: 2;
  transition: box-shadow .4s ease;
}

.video-reel-player:hover {
  box-shadow:
    0 0 0 1px rgba(216,175,87,.34),
    0 32px 80px rgba(0,0,0,.58),
    0 0 90px rgba(216,175,87,.10);
}

.video-reel-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Legenda abaixo do player */
.video-reel-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vr-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
  animation: vrDotPulse 2.4s ease-in-out infinite;
}

@keyframes vrDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

/* ---- Responsivo ---- */
@media (max-width: 1080px) {
  .video-reel-inner {
    grid-template-columns: 1fr minmax(0, 320px);
    gap: clamp(36px, 6vw, 72px);
  }
}

@media (max-width: 820px) {
  .video-reel-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .video-reel-text {
    max-width: 100%;
  }

  .video-reel-player-wrap {
    width: 100%;
    max-width: 340px;
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .video-reel-player-wrap {
    max-width: 290px;
  }

  .vr-corner {
    width: 16px;
    height: 16px;
  }
}
