@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --ink: #050505;
  --wine: #21040d;
  --wine-soft: #3a0a16;
  --gold: #c6a35a;
  --gold-light: #e2c878;
  --offwhite: #f4efe5;
  --offwhite-dim: #d8d1c2;
  --hairline: rgba(198, 163, 90, 0.22);
  --serif: "Cormorant Garamond", "Playfair Display", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shell-max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--ink);
  color: var(--offwhite);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

.seo-page * {
  min-width: 0;
}

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

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

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--hairline);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header__brand-logo {
  height: 64px;
  width: auto;
  margin: -10px 0;
}

.header__nav {
  display: flex;
  gap: 34px;
}

.header__nav a,
.header__cta-btn,
.idx,
.seo-back,
.seo-guide-card span,
.seo-choice-card span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header__nav a {
  color: var(--offwhite-dim);
}

.header__cta-btn {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 18px;
}

.idx,
.seo-back,
.seo-guide-card span,
.seo-choice-card span {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--gold);
  color: var(--offwhite);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease;
}

.btn-solid {
  background: var(--gold);
  color: var(--ink);
}

.arrow {
  position: relative;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.seo-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  border-bottom: 1px solid var(--hairline);
}

.seo-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(74, 15, 29, 0.7), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(198, 163, 90, 0.08), transparent 46%),
    linear-gradient(180deg, #0a0205, #050505);
}

.seo-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.seo-hero__copy h1 {
  max-width: 760px;
  margin: 18px 0 26px;
  font-family: var(--serif);
  font-size: clamp(54px, 7.5vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.seo-lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--offwhite);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.22;
}

.seo-answer {
  max-width: 650px;
  margin: 0 0 36px;
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  color: var(--offwhite-dim);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

.seo-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.seo-hero__visual {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  background: #090204;
}

.seo-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.44), transparent 45%),
    linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.7));
  pointer-events: none;
}

.seo-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.seo-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--ink);
}

.seo-dark {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(74, 15, 29, 0.45), transparent 50%),
    linear-gradient(180deg, #070303, #050505);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.seo-content-grid,
.seo-card-grid,
.seo-guide-grid,
.seo-related__grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.seo-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card-grid,
.seo-guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-panel,
.seo-choice-card,
.seo-guide-card,
.seo-related__grid a {
  background: #050505;
  padding: 32px;
}

.seo-panel p,
.seo-choice-card p,
.seo-guide-card p {
  margin: 16px 0 0;
  color: var(--offwhite-dim);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

.seo-choice-card h3,
.seo-guide-card h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.seo-section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.seo-section-head h2,
.seo-final h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.seo-faq-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.seo-faq {
  border-top: 1px solid var(--hairline);
}

.seo-faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}

.seo-faq summary {
  cursor: pointer;
  list-style: none;
  color: var(--offwhite);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.18;
}

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

.seo-faq p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--offwhite-dim);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.seo-final {
  padding: clamp(80px, 12vw, 150px) 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.88)),
    url("/assets/banner-garrafas.jpg") center / cover;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.seo-final__inner {
  max-width: 820px;
  margin: 0 auto;
}

.seo-final p {
  max-width: 560px;
  margin: 24px auto 34px;
  color: var(--offwhite-dim);
  font-size: 17px;
  line-height: 1.7;
}

.seo-related {
  padding-top: 64px;
}

.seo-related__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.seo-related__grid a {
  color: var(--offwhite);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.seo-related__grid span {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.seo-footer {
  border-top: 1px solid var(--hairline);
  padding: 30px 0;
  background: #050505;
}

.footer__legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer__legal-text,
.footer__legal-right {
  color: rgba(244, 239, 229, 0.48);
  font-size: 11px;
  line-height: 1.7;
}

.footer__legal-right {
  text-align: right;
}

.footer__legal-text strong,
.footer__legal-right a {
  color: var(--gold);
}

@media (max-width: 980px) {
  :root {
    --gutter: 20px;
  }

  .header {
    padding: 16px var(--gutter);
  }

  .header__brand-logo {
    height: 48px;
    margin: -6px 0;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .seo-hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  .seo-hero__grid,
  .seo-faq-wrap {
    grid-template-columns: 1fr;
  }

  .seo-hero__copy {
    text-align: center;
    min-width: 0;
    overflow: hidden;
  }

  .seo-hero__copy h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 10ch;
    font-size: clamp(42px, 11vw, 56px);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .seo-lead,
  .seo-answer {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 360px);
  }

  .seo-lead {
    font-size: clamp(23px, 6.6vw, 29px);
    line-height: 1.24;
    overflow-wrap: break-word;
  }

  .seo-answer {
    font-size: 15px;
    line-height: 1.7;
  }

  .seo-answer {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid var(--gold);
  }

  .seo-ctas {
    justify-content: center;
  }

  .btn {
    width: min(100%, 280px);
    justify-content: center;
    padding: 15px 18px;
    font-size: 10px;
  }

  .seo-hero__visual {
    min-height: 360px;
  }

  .seo-hero__visual img {
    min-height: 360px;
  }

  .seo-content-grid,
  .seo-card-grid,
  .seo-guide-grid,
  .seo-related__grid,
  .footer__legal {
    grid-template-columns: 1fr;
  }

  .seo-panel,
  .seo-choice-card,
  .seo-guide-card,
  .seo-related__grid a {
    padding: 26px 22px;
  }

  .seo-section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .seo-faq summary {
    font-size: 23px;
  }

  .seo-section-head h2,
  .seo-final h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .footer__legal-right {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .header__brand-logo {
    height: 42px;
  }

  .seo-hero {
    padding-top: 104px;
  }

  .seo-hero__copy h1 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .seo-lead {
    font-size: 23px;
  }
}
