
/* HEADER */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at right, #142033, #070b14);
  padding: 40px 20px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.badge-top {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  color: #ff7a00;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 22px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  color:#ffffff;
}


h1 span {
  color: #ff7a00;
}

.highlight {
  background: linear-gradient(45deg, #ff7a00, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: #cfd6e3;
  line-height: 1.6;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  font-size: 15px;
  color: #ffcc00;
}

.stat span {
  color: #9aa4b2;
  margin-left: 6px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, #ff7a00, #ff3c00);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.companies {
  margin-top: 10px;
  color: #8f9bb3;
  font-size: 14px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.logos span {
  font-weight: bold;
  color: #cfd6e3;
  opacity: 0.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 16px;
  }
}


.platform-demo-section {
  width: 100%;
  padding: 80px 20px 100px;
  background: #ffffff;
  text-align: center;
}


/* HEADER */

.platform-demo-header {
  max-width: 700px;
  margin: 0 auto 40px;
}

.platform-badge {
  display: inline-block;
  background: #ede9fe;
  color: #7c3aed;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.platform-demo-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.platform-demo-header p {
  font-size: 17px;
  color: #6b7280;
}


/* VIDEO */

.platform-video-wrapper {
  display: flex;
  justify-content: center;
}

.platform-video-container {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid #e5e7eb;
  background: #000;
}

.platform-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* RESPONSIVO */

@media (max-width: 768px) {

  .platform-demo-header h2 {
    font-size: 28px;
  }

  .platform-demo-header p {
    font-size: 15px;
  }

}

.features-section {
  padding: 100px 20px;
  background: #ffffff;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-pill {
  display: inline-block;
  background: #f3e8ff;
  color: #7c3aed;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}

.features-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.features-header p {
  font-size: 18px;
  color: #ffc401;
}

/* GRID */

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

/* CARD */

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #f1f1f1;
  transition: all .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #fff1e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  color: #ff7a00;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .features-header h2 {
    font-size: 32px;
  }

  .features-header p {
    font-size: 16px;
  }
}

.steps-section {
  width: 60%;
  margin: auto;
  padding: 100px 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* HEADER */

.steps-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.steps-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.steps-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.steps-header p {
  font-size: 17px;
  color: #6b7280;
}


/* GRID */

.steps-grid {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}


/* CARD */

.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px 36px;
  border: 2px solid #ffedd5;
  transition: all .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* ACTIVE (first card highlight) */

.step-card.active {
  border-color: #fb923c;
}


/* TOP */

.step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #fdba74;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


/* TEXT */

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}


/* RESPONSIVE */

@media (max-width: 768px) {

  .steps-header h2 {
    font-size: 28px;
  }

  .steps-header p {
    font-size: 15px;
  }
}

.features-section {
  width: 100%;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #1f2937 0%, #020617 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* ROW */

.feature-row {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}


/* REVERSE */

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}


/* TEXT */

.feature-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 22px;
}


/* BADGE */

.feature-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* BADGE COLORS */

.feature-badge.orange {
  background: rgba(249,115,22,.15);
  color: #fb923c;
}

.feature-badge.blue {
  background: rgba(59,130,246,.15);
  color: #60a5fa;
}

.feature-badge.green {
  background: rgba(34,197,94,.15);
  color: #4ade80;
}


/* LIST */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #e5e7eb;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: bold;
}


/* IMAGE */

.feature-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .feature-text h2 {
    font-size: 28px;
  }

}
/* RESULTS */

.results-section {
  padding: 100px 20px 80px;
  text-align: center;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.results-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 50px;
}

.results-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.result-item strong {
  font-size: 42px;
  font-weight: 800;
  color: #ff7a00;
  display: block;
  margin-bottom: 8px;
}

.result-item span {
  font-size: 15px;
  color: #6b7280;
}


/* CTA */

.cta-section {
  background: linear-gradient(135deg, #ff7a00, #e63b16);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: .95;
}


/* BUTTONS */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #ff7a00;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,.6);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.15);
}


/* GUARANTEE */

.cta-guarantee {
  margin-top: 24px;
  font-size: 14px;
  opacity: .9;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .results-section h2 {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 16px;
  }

}
