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

:root {
  --black: #090909;
  --black-2: #121212;
  --orange: #ff6a00;
  --orange-2: #ff8a00;
  --white: #ffffff;
  --muted: #b8b8b8;
  --light: #f4f4f2;
  --line: #e5e5e5;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(9, 9, 9, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.brand strong { color: var(--orange); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 19px;
  transform: skew(-7deg);
}

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  color: #ddd;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

nav a:hover { color: var(--orange); }

.menu {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 27px;
  cursor: pointer;
}

.hero {
  min-height: 760px;
  padding-top: 78px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(255,106,0,.28), transparent 28%),
    linear-gradient(115deg, #050505 0%, #111 55%, #1a0d05 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    repeating-linear-gradient(115deg, transparent 0 55px, rgba(255,255,255,.15) 56px, transparent 57px 110px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 100px;
}

.eyebrow, .section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow { margin-bottom: 18px; }

.hero h1, h2, h3, h4 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .98;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(65px, 9vw, 120px);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hero h1 span, h2 span { color: var(--orange); }

.hero-content > p {
  max-width: 600px;
  margin: 25px 0 30px;
  color: #d0d0d0;
  font-size: 18px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); opacity: .94; }

.btn-primary { background: var(--orange); color: #080808; }
.btn-outline { color: white; border: 1px solid rgba(255,255,255,.45); }
.btn-dark { background: #111; color: white; }

.intro {
  background: var(--orange);
  padding: 80px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.intro .section-tag { color: #111; }
.intro h2 { font-size: clamp(42px, 5vw, 68px); text-transform: uppercase; margin-top: 14px; }
.intro h2 span { color: #fff; }
.intro-grid > p { font-size: 18px; font-weight: 500; max-width: 560px; }

.section { padding: 100px 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(48px, 6vw, 78px);
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 380px;
  color: #666;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  padding: 30px;
  min-height: 260px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.icon { font-size: 35px; margin-bottom: 40px; }
.card h3 { font-size: 30px; text-transform: uppercase; margin-bottom: 10px; }
.card p { color: #666; font-size: 14px; }

.dark {
  color: #fff;
  background: var(--black);
}

.dark .section-heading > p { color: #aaa; }

.orange { color: var(--orange) !important; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #333;
}

.feature {
  padding: 35px 25px 20px 0;
  border-right: 1px solid #333;
}

.feature:not(:first-child) { padding-left: 25px; }
.feature:last-child { border-right: 0; }

.feature > strong {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: .1em;
}

.feature h3 { margin: 28px 0 10px; font-size: 30px; text-transform: uppercase; }
.feature p { color: #aaa; font-size: 14px; }

.pricing { background: var(--light); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 38px;
  border: 1px solid var(--line);
}

.price-card > span {
  color: #777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.price-card > strong {
  display: block;
  margin: 18px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 55px;
  line-height: 1;
}

.price-card > strong span {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.price-card p { min-height: 70px; color: #666; font-size: 14px; margin-bottom: 20px; }

.price-card.featured {
  border: 2px solid var(--orange);
  position: relative;
  transform: translateY(-10px);
}

.price-card.featured::before {
  content: "MAIS PROCURADO";
  position: absolute;
  right: 0;
  top: 0;
  padding: 7px 11px;
  background: var(--orange);
  color: #000;
  font-size: 10px;
  font-weight: 900;
}

.small-note { margin-top: 25px; color: #777; font-size: 12px; }

.cta {
  padding: 95px 0;
  background: #111;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 { margin: 12px 0 20px; font-size: clamp(42px, 5vw, 68px); text-transform: uppercase; }
.cta p { color: #aaa; max-width: 600px; }

footer { background: #050505; color: #fff; padding-top: 65px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 55px;
}

.footer-brand { margin-bottom: 15px; }
footer p, footer a { color: #aaa; font-size: 14px; }
footer h4 { font-size: 24px; text-transform: uppercase; margin-bottom: 12px; }

.copyright {
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  color: #777;
  font-size: 12px;
}

@media (max-width: 900px) {
  nav { gap: 15px; }
  .cards, .features { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .menu { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #090909;
    border-top: 1px solid #222;
  }
  nav.open { display: flex; }
  .hero { min-height: 690px; }
  .hero h1 { font-size: clamp(55px, 17vw, 90px); }
  .hero-content > p { font-size: 16px; }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .cards, .features { grid-template-columns: 1fr; }
  .feature, .feature:not(:first-child) { padding: 28px 0; border-right: 0; border-bottom: 1px solid #333; }
  .feature:last-child { border-bottom: 0; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
