/* Arroz Bonachão — landing page styles
   System:
   - Display:  "Cormorant Garamond" (editorial serif, italics for accents)
   - Body:     "DM Sans" (clean neutral sans)
   - Mono:     "JetBrains Mono" (used for small-caps labels / spec strings)
*/

:root {
  /* Palette - wine + cream + ink (palette 3) */
  --ink:       #1f1a17;
  --ink-soft:  #3d342c;
  --ink-mute:  #847b6e;
  --rule:      rgba(31, 26, 23, 0.16);
  --rule-soft: rgba(31, 26, 23, 0.08);
  --paper:     #ece5d5;
  --paper-2:   #dccfb5;
  --paper-warm:#e3d8be;
  --wine:      #5b1626;
  --wine-deep: #3e0d1a;
  --wine-soft: #7a2034;
  --accent:    #1f1a17;
  --gold:      #a07a3a;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--wine); color: var(--paper); }

/* ── Typography utilities ─────────────────────────────────────────── */
.serif { font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif; }
.mono  { font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace; }

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--wine);
  margin: 0 10px 2px 0;
  vertical-align: middle;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(56px, 8.4vw, 132px); }
h2 { font-size: clamp(40px, 5.6vw, 84px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); }

p { text-wrap: pretty; }

/* ── Layout shell ─────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
}

section { position: relative; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* ── Top nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo {
  height: 24px;
  width: auto;
  opacity: 0.95;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 160ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 160ms, color 160ms;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}
.hero {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  isolation: isolate;
}

/* Intro - text block that lives ABOVE the hero image */
.intro {
  background: var(--paper);
  padding: 96px 0 80px;
  position: relative;
}
.intro-content {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .intro { padding: 64px 0 56px; }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.96);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 23, 0.0) 50%, rgba(31, 26, 23, 0.22) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  padding-top: 24px;
}

.hero-meta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 36px;
  justify-content: center;
}
.hero-meta .pip {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--wine);
}

.hero-title {
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
}
.hero-title em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}

.hero-sub {
  margin: 36px auto 0;
  max-width: 520px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-spec {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-spec span { display: inline-flex; align-items: center; gap: 10px; }
.hero-spec span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--wine);
  border-radius: 50%;
}
.hero-spec span:first-child::before { display: none; }

/* Packshot tucked into the bottom-right corner */
.hero-pack {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: 40px;
  width: clamp(160px, 18vw, 240px);
  pointer-events: none;
}
.hero-pack .product {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 36px rgba(31, 26, 23, 0.32));
}
.hero-pack .stamp {
  position: absolute;
  top: -28px;
  left: -36px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.15;
  background: var(--paper);
  z-index: 4;
  transform: rotate(-6deg);
  box-shadow: 0 6px 18px rgba(31, 26, 23, 0.18);
}
.hero-pack .stamp b { font-style: normal; font-size: 26px; font-weight: 500; display: block; }

/* Tablet: smaller pack */
@media (max-width: 980px) {
  .hero { min-height: 54vh; }
  .hero-pack { width: clamp(150px, 22vw, 200px); bottom: 32px; }
  .hero-pack .stamp { width: 86px; height: 86px; font-size: 13px; top: -22px; left: -28px; }
  .hero-pack .stamp b { font-size: 22px; }
}

/* Mobile: the hero stays full-bleed image; pack sits inside it bottom-center */
@media (max-width: 720px) {
  .hero { min-height: 46vh; }
  .hero-pack {
    right: 50%;
    transform: translateX(50%);
    bottom: 24px;
    width: clamp(140px, 44vw, 180px);
  }
  .hero-pack .stamp {
    top: -16px;
    left: -22px;
    width: 78px;
    height: 78px;
    font-size: 12px;
  }
  .hero-pack .stamp b { font-size: 20px; }
}

/* Marquee / heritage strip */
.heritage-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  background: var(--paper-warm);
  overflow: hidden;
}
.heritage-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--wine);
}
.heritage-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.heritage-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section header ──────────────────────────────────────────────── */
.section {
  padding: 140px 0;
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.section-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 820px) {
  .section-hd { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
}
.section-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-num .bar { flex: 1; height: 1px; background: var(--rule); max-width: 220px; }

.section-title em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
}

/* ── Produto ─────────────────────────────────────────────────────── */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) {
  .products { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--paper-2);
  border-radius: 6px;
  padding: 56px 48px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), background 320ms;
}
.product-card:hover { transform: translateY(-4px); }
.product-card.tipo-2 { background: #ede0d0; }

.product-card .ix {
  position: absolute;
  top: 32px; right: 36px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.product-card .name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1;
  color: var(--wine);
  margin: 0 0 8px;
}
.product-card .name em { font-style: italic; }
.product-card .tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.product-card .stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 28px;
  position: relative;
}
.product-card .stage::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%; bottom: 8%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(31,26,23,0.22), transparent 70%);
  z-index: 0;
}
.product-card .stage img {
  position: relative;
  z-index: 1;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 14px 24px rgba(31, 26, 23, 0.18));
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec .k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.spec .v {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--ink);
}

/* ── Empresa ─────────────────────────────────────────────────────── */
.empresa {
  background: var(--paper-warm);
}
.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 980px) {
  .empresa-grid { grid-template-columns: 1fr; gap: 56px; }
}
.empresa-copy h2 { margin-bottom: 36px; }
.empresa-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 540px;
}
.empresa-copy p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--wine);
  font-weight: 500;
}

.empresa-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  max-width: 540px;
}
.stat {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.stat .n {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 1;
  color: var(--wine);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat .n sup { font-size: 22px; color: var(--ink-mute); top: -0.5em; position: relative; }
.stat .k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

.empresa-photo {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

/* Placeholder SVG holder */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(91,22,38,0.05) 0 1px,
      transparent 1px 14px
    ),
    var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-mute);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.ph .corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--wine);
  opacity: 0.55;
}
.ph .corner.tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.ph .corner.tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.ph .corner.bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.ph .corner.br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }
.ph .ph-label { color: var(--wine); }

/* ── Empresa photo (lavoura) ─────────────────────────────────────── */
.empresa-figure {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
  isolation: isolate;
}
.empresa-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.empresa-figure .corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--paper);
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}
.empresa-figure .corner.tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.empresa-figure .corner.tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.empresa-figure .corner.bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.empresa-figure .corner.br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
.empresa-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 22px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(to top, rgba(20,12,10,0.55), rgba(20,12,10,0));
}
.empresa-cap-k { color: var(--paper); opacity: 0.95; }
.empresa-cap-v { color: var(--paper); opacity: 0.7; }
@media (max-width: 980px) {
  .empresa-figure { min-height: 420px; }
}

/* ── Full-bleed image strip ─────────────────────────────────────── */
.bleed {
  height: 64vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.bleed-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bleed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bleed-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,23,0.0) 40%, rgba(31,26,23,0.55) 100%);
  pointer-events: none;
}
.bleed .ph { border-radius: 0; min-height: 100%; }
.bleed .quote {
  position: absolute;
  inset: auto 0 56px 0;
  text-align: center;
  padding: 0 24px;
  color: #f5f0e6;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.bleed .quote .by {
  display: block;
  margin-top: 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ── Downloads ───────────────────────────────────────────────────── */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .downloads-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .downloads-grid { grid-template-columns: 1fr; }
}
.dl-card {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 24px 24px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 200ms, background 200ms, transform 200ms;
}
.dl-card:hover {
  border-color: var(--wine);
  background: #fbf6ec;
  transform: translateY(-2px);
}
.dl-thumb {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.dl-thumb picture {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.dl-card .dl-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
}
.dl-card .dl-meta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}
.dl-meta .arrow {
  color: var(--wine);
  font-size: 14px;
  transition: transform 200ms;
}
.dl-card:hover .arrow { transform: translateX(4px); }

/* ── Contato ─────────────────────────────────────────────────────── */
.contato {
  background: var(--wine);
  color: var(--paper);
}
.contato .section-num,
.contato .section-intro,
.contato .eyebrow { color: rgba(245, 240, 230, 0.65); }
.contato .section-num .bar { background: rgba(245, 240, 230, 0.25); }
.contato h2 { color: var(--paper); }
.contato h2 em { color: #e8c9a8; }

.contato-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 980px) {
  .contato-grid { grid-template-columns: 1fr; gap: 56px; }
}

.form { display: flex; flex-direction: column; gap: 20px; max-width: 540px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.6);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 200ms;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 240, 230, 0.35);
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: #e8c9a8; }
.field textarea { min-height: 96px; }
.field input:disabled,
.field textarea:disabled,
.field select:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Select estilizado (assunto) ─────────────────────────────────── */
.select-wrap { position: relative; display: block; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.18);
  color: var(--paper);
  font-family: inherit;
  font-size: 16px;
  padding: 10px 28px 10px 2px;
  width: 100%;
  border-radius: 0;
  cursor: pointer;
}
.field select:invalid { color: rgba(245, 240, 230, 0.4); font-style: italic; }
.field select option { color: #1a1410; background: var(--paper); font-style: normal; }
.field select option[disabled] { color: rgba(0,0,0,0.4); }
.select-caret {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(245, 240, 230, 0.5);
  font-size: 12px;
}

/* ── Aviso de redirecionamento (Trabalhe conosco) ─────────────────── */
.form-redirect {
  margin-top: 4px;
  padding: 18px 20px;
  border-left: 2px solid var(--paper);
  background: rgba(245, 240, 230, 0.05);
  font-family: inherit;
  animation: form-redirect-in 280ms ease both;
}
.form-redirect-k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  margin-bottom: 8px;
}
.form-redirect-v {
  font-size: 16px;
  line-height: 1.5;
  color: var(--paper);
}
.form-redirect-v a {
  color: #e8c9a8;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.form-redirect-v a:hover { color: var(--paper); }
@keyframes form-redirect-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form.is-locked .field:not(:has(select)) { opacity: 0.45; transition: opacity 200ms ease; }

.submit {
  align-self: flex-start;
  background: var(--paper);
  color: var(--wine);
  border: 0;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms, color 160ms, transform 160ms;
  margin-top: 12px;
}
.submit:hover { background: #e8c9a8; transform: translateY(-1px); }
.submit:disabled { opacity: 0.7; cursor: default; transform: none; }

/* Honeypot — fora de tela, mas ainda focável por bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Mensagem de status do formulário (sucesso / erro) */
.form-status {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.55;
  margin-top: -4px;
  min-height: 1.2em;
  color: rgba(245, 240, 230, 0.7);
  opacity: 0;
  transition: opacity 240ms ease;
}
.form-status:not(:empty) { opacity: 1; }
.form-status.is-success {
  color: #cfe3c6;
  padding: 10px 14px;
  border-left: 2px solid #cfe3c6;
  background: rgba(207, 227, 198, 0.06);
}
.form-status.is-error {
  color: #f0b3a3;
  padding: 10px 14px;
  border-left: 2px solid #f0b3a3;
  background: rgba(240, 179, 163, 0.06);
}

.contato-info { display: flex; flex-direction: column; gap: 36px; }
.info-block .k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  margin-bottom: 10px;
}
.info-block .v {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.3;
  color: var(--paper);
}
.info-block .v em { color: #e8c9a8; font-style: italic; }
.info-block .v em a { color: inherit; }
.info-block .v .phone-link {
  color: var(--paper);
  border-bottom: 1px solid rgba(245,240,230,0.25);
  padding-bottom: 2px;
  transition: border-color 200ms;
}
.info-block .v .phone-link:hover { border-color: #e8c9a8; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #0a3a1c;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms;
}
.wa-btn:hover { background: #1ebd5a; transform: translateY(-1px); }
.wa-btn svg { width: 16px; height: 16px; }

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(245, 240, 230, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.socials a:hover {
  background: var(--paper);
  color: var(--wine);
  border-color: var(--paper);
}
.socials svg { width: 18px; height: 18px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.foot {
  padding: 56px 0 36px;
  background: var(--wine-deep);
  color: rgba(245, 240, 230, 0.7);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* =========================================================
   COOKIE CONSENT (LGPD)
   ========================================================= */
.cookies {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -10px 32px rgba(31, 26, 23, 0.10);
  animation: cookies-in 320ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cookies-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookies[hidden] { display: none; }
.cookies-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 22px 0;
}
.cookies-eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
.cookies-eyebrow .pip {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--wine);
}
.cookies-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}
.cookies-copy p em {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--wine);
  font-style: italic;
}
.cookies-copy a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookies-copy a:hover { text-decoration-color: var(--ink); }

.cookies-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-cookie {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms, transform 160ms;
  min-height: 44px;
  white-space: nowrap;
}
.btn-cookie:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-1px); }
.btn-cookie.ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--rule);
}
.btn-cookie.ghost:hover { color: var(--ink); border-color: var(--ink); background: transparent; transform: translateY(-1px); }

/* Floating "Cookies" pill to reopen preferences */
.cookie-reopen {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink-soft);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
  min-height: 36px;
}
.cookie-reopen[hidden] { display: none; }
.cookie-reopen:hover { color: var(--wine); border-color: var(--wine); }

@media (max-width: 720px) {
  .cookies-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 20px;
  }
  .cookies-actions { width: 100%; }
  .btn-cookie { flex: 1; padding: 14px 16px; text-align: center; }
  .cookies-copy p { font-size: 13.5px; }
  .cookie-reopen { left: 12px; bottom: 12px; }
}
.foot img { height: 22px; opacity: 0.9; filter: brightness(0) invert(1) sepia(0.4); }
.foot .ack { color: rgba(245, 240, 230, 0.5); font-size: 10px; }

/* ── Misc ────────────────────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wine);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
