@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&display=swap");

:root {
  --primary: #009e47;
  --primary-hover: #00823a;
  --primary-soft: #eaf8ef;
  --dark: #090e14;
  --slate: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --light-bg: #f8fafc;
  --border: #e2e8f0;
  --font-display: "Oswald", -apple-system, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--surface);
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--slate);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* NAVBAR */
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #090e14;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.nav img {
  height: 44px;
  width: auto;
}
.nav a:last-child {
  padding: 11px 20px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav a:last-child:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 80px clamp(20px, 6vw, 100px) 70px;
  position: relative;
  overflow: hidden;
  background: #090e14;
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 14, 20, 0.94) 0%,
    rgba(9, 14, 20, 0.75) 55%,
    rgba(9, 14, 20, 0.4) 100%
  );
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.eyebrow {
  display: inline-block;
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(38px, 5.2vw, 68px);
  margin-bottom: 18px;
}
.hero h1 span {
  color: #4ade80;
}
.hero p {
  max-width: 620px;
  color: #cbd5e1;
  font-size: 16.5px;
  line-height: 1.65;
}

/* LAYOUT PRINCIPAL */
.layout {
  max-width: 1280px;
  margin: auto;
  padding: clamp(60px, 8vw, 100px) 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}
.layout h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  margin-bottom: 20px;
}
.layout h2 span {
  color: var(--primary);
}
.layout p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ESPECIFICAÇÕES / BOX LATERAL */
.spec {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.spec h2 {
  font-size: 26px;
  margin-bottom: 18px;
}
.spec ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.spec li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
}
.spec li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  margin-right: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 15px 26px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 158, 71, 0.3);
  transition: all 0.2s;
}
.cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 158, 71, 0.45);
}

/* FAQ */
.faq {
  padding: 70px 24px;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 1280px;
  margin: auto;
}
.faq h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 30px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 18px 24px;
  transition: border-color 0.2s;
}
.faq details[open] {
  border-color: var(--primary);
}
.faq summary {
  cursor: pointer;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary:after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 14px;
}

/* NEXT CTA BANNER */
.next {
  padding: 85px 24px;
  text-align: center;
  background: #090e14;
  color: #fff;
}
.next h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 24px;
}
.next h2 span {
  color: #4ade80;
}

/* FOOTER */
footer {
  background: #05080c;
  color: #94a3b8;
  padding: 30px 24px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
  .hero {
    min-height: 420px;
    padding: 60px 20px 50px;
  }
  .hero h1 {
    font-size: 42px;
  }
}

/* BLACK STEEL: the same material language throughout product and regional pages. */
:root {
  --primary: #00ff8b;
  --primary-hover: #00e07a;
  --primary-dark: #009e47;
  --primary-soft: rgba(0, 255, 139, 0.12);
  --dark: #f0f0ec;
  --slate: #b7bdc0;
  --muted: #959da1;
  --surface: #0b0c0d;
  --light-bg: #111315;
  --border: #ffffff26;
  --acid: #00ff8b;
  --font-display: "Barlow Condensed", sans-serif;
  color-scheme: dark;
}
html {
  scroll-padding-top: 100px;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 6px;
}
.nav {
  background: #0b0c0df5;
  height: 88px;
  box-shadow: none;
  border-color: var(--border);
}
.nav img {
  filter: none;
}
.nav a:last-child {
  border-radius: 2px;
  background: var(--primary);
  color: #060809;
  font-size: 10px;
  font-weight: 800;
  padding: 15px 22px;
  box-shadow: 0 4px 18px rgba(0, 255, 139, 0.25);
  transition: background 0.4s cubic-bezier(0.22, 0.68, 0, 1.02);
}
.nav a:last-child:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 24px rgba(0, 255, 139, 0.4);
}
.hero {
  min-height: calc(90svh - 88px);
  padding: 90px clamp(22px, 6vw, 100px);
}
.hero:before {
  background: linear-gradient(90deg, #080909e8, #08090988 60%, #08090940);
}
.hero img {
  filter: saturate(1.05);
}
.hero h1 {
  font-size: clamp(64px, 8vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 26px 0;
  font-weight: 600;
}
.hero h1 span,
.next h2 span {
  color: var(--primary);
}
.hero p {
  color: #c3c8cb;
  max-width: 530px;
  font-size: 14px;
}
.eyebrow {
  color: var(--primary);
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.layout {
  max-width: 1440px;
  padding: 120px clamp(22px, 6vw, 90px);
  gap: 8vw;
}
.layout h2 {
  font-size: clamp(42px, 4.8vw, 80px);
  line-height: 0.97;
}
.layout h2 span {
  color: var(--primary);
}
.layout p {
  font-size: 14px;
  line-height: 1.9;
}
.spec {
  border: 0;
  border-top: 2px solid var(--primary);
  border-radius: 0;
  padding: 35px 0;
  background: none;
  box-shadow: none;
}
.spec h2 {
  font-size: 38px;
}
.spec li {
  font-size: 11px;
  padding: 18px 0;
}
.spec li:before {
  content: "—";
  color: var(--primary);
  margin-right: 16px;
}
.cta {
  border-radius: 2px;
  background: var(--primary);
  color: #060809;
  font-size: 10.5px;
  font-weight: 800;
  padding: 20px 28px;
  box-shadow: 0 4px 20px rgba(0, 255, 139, 0.28);
  transition:
    background 0.4s cubic-bezier(0.22, 0.68, 0, 1.02),
    transform 0.4s cubic-bezier(0.22, 0.68, 0, 1.02),
    box-shadow 0.4s cubic-bezier(0.22, 0.68, 0, 1.02);
}
.cta:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 28px rgba(0, 255, 139, 0.45);
  transform: translateY(-2px);
}
.icon-arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.4;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.02);
}
.cta:hover .icon-arrow,
.nav a:last-child:hover .icon-arrow {
  transform: translate(2px, -2px);
}
.faq {
  padding: 100px clamp(22px, 6vw, 90px);
}
.faq h2 {
  font-size: clamp(40px, 5vw, 75px);
}
.faq details {
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 24px 0;
  margin: 0;
  background: transparent;
}
.faq summary {
  font-size: 14px;
  gap: 20px;
}
.faq p {
  font-size: 13px;
  max-width: 800px;
}
.next {
  background: #0b0c0d;
  padding: 130px 24px;
}
.next h2 {
  font-size: clamp(54px, 7.5vw, 125px);
  line-height: 0.93;
}
footer {
  background: #0b0c0d;
  color: #959da1;
  font-size: 10px;
  padding: 40px 24px;
}
@media (max-width: 640px) {
  .nav {
    height: 76px;
    padding: 0 20px;
    gap: 18px;
  }
  .nav img {
    height: auto;
    width: 145px;
  }
  .nav a:last-child {
    font-size: 8px;
    padding: 12px;
  }
  .hero {
    min-height: 75svh;
    padding: 70px 22px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero p {
    font-size: 13px;
  }
  .layout {
    padding: 75px 22px;
    gap: 45px;
  }
  .layout h2 {
    font-size: 49px;
  }
  .faq {
    padding: 70px 22px;
  }
  .next {
    padding: 90px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
