/* Funcionalidades resumo */
.funcionalidades-resumo {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.func-bloco {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 16px #0005;
  padding: 28px 22px 22px 22px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: center;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.func-bloco h3 {
  color: #4da3ff;
  margin-bottom: 14px;
  font-size: 1.15rem;
}
.func-bloco ul {
  list-style: disc inside;
  color: #e3eafc;
  margin-bottom: 18px;
  text-align: left;
  padding-left: 0;
}
.func-bloco li {
  margin-bottom: 7px;
  font-size: 1rem;
}
.func-bloco button {
  margin-top: auto;
}

dialog {
  border: none;
  border-radius: 18px;
  box-shadow: 0 8px 32px #0008;
  background: var(--bg-alt);
  color: var(--text);
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  width: 90vw;
  z-index: 1000;
}
dialog::backdrop {
  background: #000a;
  backdrop-filter: blur(2px);
}
dialog h3 {
  color: #4da3ff;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
dialog ul {
  color: #e3eafc;
  margin-bottom: 18px;
  padding-left: 0;
  list-style: disc inside;
  text-align: left;
}
dialog li {
  margin-bottom: 8px;
  font-size: 1rem;
}
dialog button {
  margin-top: 10px;
}
/* Destaques do sistema */
.destaques-sistema {
  background: var(--bg-alt);
  padding: 70px 20px 40px 20px;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  border-radius: 24px;
  box-shadow: 0 4px 32px #0003;
}
.destaques-sistema h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 44px;
  color: var(--primary);
}
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: stretch;
}
.destaque {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 16px #0005;
  padding: 24px 18px 18px 18px;
  color: #fff;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.destaque:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0007;
}
.destaque img {
  width: 90%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px #0003;
  background: #222b;
}
.destaque h3 {
  margin: 10px 0 8px 0;
  color: #4da3ff;
  font-size: 1.18rem;
}
.destaque p {
  font-size: 1rem;
  color: #e3eafc;
}
:root{
  --bg:#0b0d10;
  --bg-alt:#12151b;
  --card:#161a22;
  --text:#e8eaf0;
  --muted:#9aa3b2;
  --primary:#4da3ff;
  --border:rgba(255,255,255,.08);
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}

.topbar{
  position:sticky;top:0;z-index:10;
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 24px;
  background:rgba(11,13,16,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}

.logo{font-weight:700;font-size:1.1rem}

.menu a{
  margin-left:18px;
  color:var(--muted);
}

.menu a.cta{
  padding:8px 14px;
  border-radius:8px;
  background:var(--primary);
  color:#000;
  font-weight:600;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 70px 20px 40px 20px;
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(90deg, #0b0d10 60%, #232c3d 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px #0005;
}
.hero-content {
  flex: 1 1 340px;
  min-width: 320px;
  text-align: left;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: bold;
  text-shadow: 2px 2px 8px #2228;
}
.hero p {
  color: var(--muted);
  font-size: 1.18rem;
  margin-bottom: 18px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-carousel {
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px #0007;
  background: #181f2a;
  margin-bottom: 18px;
}
.carousel-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.carousel-img.active {
  opacity: 1;
  z-index: 2;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4da3ff44;
  border: 2px solid #4da3ff;
  transition: background 0.2s;
  cursor: pointer;
}
.dot.active {
  background: #4da3ff;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 24px;
    padding: 40px 8px 24px 8px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-carousel {
    max-width: 98vw;
  }
  .carousel-track {
    height: 180px;
  }
}

.btn{
  padding:12px 22px;
  border-radius:10px;
  border:1px solid var(--border);
  font-weight:600;
}

.btn.primary{
  background:var(--primary);
  color:#000;
  border:none;
}

.btn.ghost{
  background:transparent;
  color:var(--text);
}

.section{
  padding:70px 20px;
  max-width:1000px;
  margin:auto;
}

.section.alt{
  background:var(--bg-alt);
}

.section h2{
  text-align:center;
  font-size:2rem;
  margin-bottom:40px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:24px;
}

.step{
  background:var(--card);
  padding:24px;
  border-radius:14px;
  border:1px solid var(--border);
  text-align:center;
}

.step span{font-size:2rem}

.features{
  max-width:700px;
  margin:auto;
  list-style:none;
}

.features li{
  padding:12px 0;
  border-bottom:1px solid var(--border);
  color:var(--muted);
}

.languages{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
  max-width:700px;
  margin:auto;
  text-align:center;
}

.languages span{
  background:var(--card);
  padding:12px;
  border-radius:10px;
  border:1px solid var(--border);
}

.cta-final{
  padding:80px 20px;
  text-align:center;
  background:linear-gradient(180deg,#0b0d10,#12151b);
}

.cta-final h2{font-size:2.2rem}
.cta-final p{color:var(--muted);margin:14px 0 28px}

.btn.large{font-size:1.1rem;padding:16px 30px}

.footer{
  padding:30px 20px;
  text-align:center;
  font-size:.85rem;
  color:var(--muted);
  border-top:1px solid var(--border);
}
