:root {
  --bg: #0b0f14;
  --bg-soft: #121820;
  --text: #e6e8eb;
  --muted: #aab0b6;
  --primary: #5b9cff;
  --primary-ink: #0a2a66;
  --border: #253042;
  --card: #0f141a;
  --success: #2ecc71;
  --warning: #f1c40f;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2');
}

/*
 @media (prefers-color-scheme: light) {
   :root {
     --bg: #f6f7f9;
     --bg-soft: #f6f7f9;
     --text: #1a1f24;
     --muted: #5b6672;
     --primary: #2f6df6;
     --primary-ink: #102a72;
     --border: #e2e6ea;
     --card: #ffffff;
   }
 }
 
 
 
 */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #474a50;
    --bg-soft: #f6f7f9;
    --text: #1a1f24;
    --muted: #5b6672;
    --primary: #2f6df6;
    --primary-ink: #102a72;
    --border: #e2e6ea;
    --card: #ffffff;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Poppins, Roboto, Helvetica, Arial, sans-serif, Lora;
  color: var(--text);
  background: var(--bg);
}

.hero-wrap {
  background-image: url('images/bg_1.jpg');
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-link:hover {
  background: var(--bg-soft);
}

.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 72px 0 48px;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted);
  margin: 0 0 24px;
}

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

.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(47, 109, 246, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(47, 109, 246, 0.35);
}

.btn-secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
}

.section-title {
  font-size: 24px;
  margin: 8px 0 24px;
}

.features {
  padding: 32px 0 12px;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  grid-column: span 6;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-text {
  margin: 0;
  color: var(--muted);
}

.pricing {
  padding: 32px 0;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  grid-column: span 4;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-featured {
  outline: 2px solid var(--primary);
}

.price-header {
  font-weight: 700;
}

.price-value {
  font-size: 24px;
}

.price-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.price-list li {
  margin: 4px 0;
}

.cta {
  padding: 40px 0 64px;
}

.cta-content {
  text-align: center;
}

.cta-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.cta-text {
  margin: 0 0 16px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .card {
    grid-column: span 12;
  }

  .price-card {
    grid-column: span 12;
  }

  .header-content {
    height: auto;
    padding: 12px 0;
  }

  .nav {
    flex-wrap: wrap;
  }
}

/* Tailwind utilidades necessárias para o clone */
html {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.md\:text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.bg-black {
  background-color: rgba(0, 0, 0, 1);
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-gray-800 {
  background-color: rgb(31 41 55 / 1);
}

.bg-gray-900 {
  background-color: rgb(17 24 39 / 1);
}

.bg-gray-950 {
  background-color: rgb(3 7 18 / 1);
}

.text-gray-100 {
  color: rgb(243 244 246 / 1);
}

.text-gray-400 {
  color: rgb(156 163 175 / 1);
}

.text-gray-800 {
  color: rgb(31 41 55 / 1);
}

.text-white {
  color: rgb(255 255 255 / 1);
}

.text-grb-yellow {
  color: rgb(210 191 95 / 1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.hover\:text-grb-yellow:hover {
  color: rgb(210 191 95 / 1);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.flex-col {
  flex-direction: column;
}

.h-auto {
  height: auto;
}

.md\:hidden {
  display: none;
}

.md\:w-full {
  width: 100%;
}

.md\:h-full {
  height: 100%;
}

.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.subheading {
  display: block;
}

.bg-black.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

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

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.md\:grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-14 {
  height: 3.5rem;
}

.w-full {
  width: 100%;
}

.w-32 {
  width: 8rem;
}

.md\:bg-transparent {
  background-color: transparent;
}

.md\:flex {
  display: flex;
}

.md\:items-center {
  align-items: center;
}

.md\:space-x-4> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

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

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.md\:grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.m-8 {
  margin: 2rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.rounded-lg {
  border-radius: .5rem;
}

.rounded-md {
  border-radius: .375rem;
}

.section-about {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .section-about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.about-media {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
}

.about-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-text {
  padding: 0;
  max-width: 680px;
}

@media (min-width: 768px) {
  .about-text {
    padding: 0 8px;
  }
}

.about-highlights {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .about-highlights {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .about-highlights {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.menu-link {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.menu-link:hover,
.menu-link:focus-visible {
  transform: translateY(-1px);
}

svg.lucide-gavel {
  transform: scaleX(-1);
}

svg.lucide-gavel,
svg.lucide-handshake,
svg.lucide-square-check-big,
svg.lucide-medal {
  stroke-width: 1;
}
