/* CSS Variables */
:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --amber-400: #fbbf24;
  --blue-500: #3b82f6;
  --teal-500: #14b8a6;
  --purple-500: #8b5cf6;
}
/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.min-h-screen  {
  min-height: 100vh;
}
.bg-aurora {
  background:
    radial-gradient(
      1200px 700px at 20% 10%,
      color-mix(in oklab, hsl(162, 83%, 34%) 22%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 25%,
      color-mix(in oklab, hsl(168, 76%, 36%) 18%, transparent) 0%,
      transparent 62%
    ),
    radial-gradient(
      700px 520px at 55% 85%,
      color-mix(in oklab, hsl(162, 83%, 34%) 14%, transparent) 0%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      hsl(0, 0%, 100%),
      color-mix(in oklab, hsl(0, 0%, 100%) 85%, white)
    );
}
/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-sm {
  max-width: 768px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}
.text-emerald {
  color: var(--emerald-500);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--emerald-500);
  color: #fff!important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
  background: var(--emerald-600)!important;
}
.btn-secondary {
  background: #fff;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover {
  background: var(--gray-50);
}
.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
}
/* Cards */
.card {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}
/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-neutral {
  background: var(--gray-100);
  color: var(--gray-600);
}
/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--emerald-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 0.625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--emerald-600);
}
.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
.login-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
  text-decoration: none;
  margin-right: 24px;
}
.login-link:hover {
  color: var(--emerald-600);
}
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--gray-500);
  padding: 0.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: 0.5rem;
}
.mobile-menu a:hover {
  background: var(--gray-50);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}
/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: var(--emerald-100);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: #99f6e4;
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-500);
  border: 1px solid var(--emerald-100);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}
.hero-badge svg {
  color: #fff;
}
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-subtitle strong {
  color: var(--gray-900);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.trust-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--emerald-500);
  border-radius: 50%;
}
/* Hero Card */
.hero-card-wrapper {
  position: relative;
}
.hero-card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--emerald-100), #99f6e4);
  border-radius: 1rem;
  filter: blur(8px);
  opacity: 0.5;
}
.hero-card {
  position: relative;
  padding: 1.5rem;
  border: none;
  /* background-image: url("../imagens/img-hero.png"); */
}
.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0.75rem;
}
@media (max-width: 1023px) {
  .hero-card img {
    display: none;
  }
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}
.hero-card-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
}
.benefit-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--emerald-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
}
.benefit-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.benefit-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.stat-box {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}
.hero-card-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-badge svg {
  color: var(--emerald-500);
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0 7rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
/* ==================== SECTIONS ==================== */
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 1.875rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--gray-600);
}
/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  padding: 5rem 0;
}
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}
.benefit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.benefit-card:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.benefit-card .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--emerald-50);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==================== STEPS SECTION ==================== */
.steps-section {
  padding: 5rem 0;
}
.steps-grid {
  display: grid;
  gap: 2rem;
}
.step-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.step-card:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.step-card .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--emerald-50);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.step-card:hover .card-icon {
  background: var(--emerald-100);
}
.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==================== STATUS SECTION ==================== */
.status-section {
  padding: 5rem 0;
}
.status-grid {
  display: grid;
  gap: 2rem;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.label-icon {
  padding: 0.375rem;
  background: var(--gray-100);
  border-radius: 0.375rem;
  color: var(--gray-400);
}
.section-label span {
  font-weight: 600;
  color: var(--gray-900);
}
.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.status-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  margin-top: 0.375rem;
}
.status-pending {
  background: var(--amber-400);
}
.status-validated {
  background: var(--emerald-500);
}
.status-negotiating {
  background: var(--blue-500);
}
.status-converted {
  background: var(--teal-500);
}
.status-paid {
  background: var(--purple-500);
}
.status-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}
.status-info p {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.status-number {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.cta-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  height: calc(100% - 3rem);
}
.cta-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.cta-card .btn {
  margin-bottom: 1rem;
  max-width: 280px;
}
.cta-note {
  font-size: 0.75rem;
  color: var(--gray-400);
}
img[src*="img-status"] {
  display: block;
  width: 86%;
  height: auto;
  max-width: 86%;
}
@media (max-width: 1023px) {
  img[src*="img-status"] {
    display: none;
  }
}
@media (min-width: 1024px) {
  .status-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ==================== MATERIALS SECTION ==================== */
.materials-section {
  padding: 5rem 0;
}
.materials-grid {
  display: grid;
  gap: 2rem;
}
.material-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.material-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.material-icon {
  color: var(--emerald-500);
}
.material-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}
.material-content {
  flex-grow: 1;
  margin-bottom: 2rem;
}
.material-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.material-texts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}
.text-item {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1rem;
}
.text-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.text-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.text-header .title {
  font-size: 0.875rem;
  font-weight: 500;

  color: var(--gray-900);
}
.text-header .subtitle {
  font-size: 0.675rem;
  font-weight: 500;
  color: var(--gray-700);
}
.copy-btn, .see-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.copy-btn:hover, .see-btn:hover {
  color: var(--emerald-600);
  border-color: var(--emerald-300);
}
.image-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.image-lightbox-content {
  position: relative;
  width: min(90vw, 980px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.image-lightbox img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.45);
  background: #fff;
}
.image-lightbox-caption {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}
.text-preview {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.link-preview {
  font-size: 0.75rem;
  color: var(--gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 5rem 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-question span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
}
.faq-icon {
  color: var(--gray-400);
  transition: transform 0.2s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.2s ease;
}
.faq-answer p {
  font-size: 0.875rem;
  color: var(--gray-600);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================== FOOTER ==================== */
.footer {
  padding: 2.5rem 0 2rem;
}
.footer-cta {
  background: linear-gradient(135deg, #fff, #ccfbf1);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 4rem;
}
.footer-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-cta-text h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.footer-cta-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--emerald-500);
  border-radius: 50%;
}
.footer-cta-buttons {
  display: flex;
  gap: 1rem;
}
.footer-contact {
  display: grid;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}
.contact-icon {
  padding: 0.5rem;
  background: var(--gray-50);
  border-radius: 0.375rem;
  color: var(--gray-600);
}
.contact-card strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-900);
}
.contact-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-brand strong {
  display: block;
  color: var(--gray-900);
}
@media (min-width: 768px) {
  .footer-cta {
    padding: 3rem;
  }

  .footer-cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
