:root {
  --bg: #060606;
  --bg-soft: #0b0b0c;
  --fg: #f6f5f2;
  --muted: #8c8c92;
  --muted-dim: #59595f;
  --line: #18181a;
  --accent: #e8a868;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted-dim);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}

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

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 25px;
}

/* ---------- BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµes ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-primary { background: var(--fg); color: #0a0a0a; }
.btn-primary:hover { background: #ffffff; }

.btn-dark { background: #0a0a0a; color: var(--fg); border: 1px solid var(--line); }
.btn-dark:hover { border-color: #333; }

.btn-ghost { border: 1px solid var(--line); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: #333; }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

header.site-header {
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  padding-top: 16px;
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 19px;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(246,245,242,0.15) 70%);
  box-shadow: 0 0 12px 2px rgba(246, 245, 242, 0.55);
}

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a:hover { color: var(--fg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .muted-link {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-nav { display: none; }
}

/* ---------- Footer ---------- */

footer.site-footer {
  /* border-top: 1px solid var(--line); */
  padding: 40px 0 30px;
  background-image: url(./imgs/index-7.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0% 80%;
  padding-top: 150px;
}

footer.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}

footer.site-footer .footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: white;
}

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

footer.site-footer .footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #ffffff8c;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Split layout (login/registro) ---------- */

.split-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-left {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 44px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  background-image: url(./imgs/index-7.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom;
}

.split-right {
  background: #f4f3f0;
  color: #111;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-right .eyebrow { color: #9a9a9a; }
.split-right h1 { color: #111; font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 14px; }
.split-right p.lede { color: #6b6b6b; font-size: 14px; max-width: 46ch; margin-bottom: 8px; }
  .hero { padding: 90px 0 110px; }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .hero h1 { font-size: clamp(40px, 5.2vw, 68px); margin: 18px 0 20px; }
  .hero h1 .dim { color: var(--muted); }
  .hero .lede { color: var(--muted); font-size: 16px; max-width: 42ch; margin-bottom: 30px; }
  .hero-actions { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
  .play-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .play-dot { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
  .badges { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
  .badges span { display: flex; align-items: center; gap: 6px; }

  .browser-mock {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }
  .browser-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
  .browser-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #333; }
  .browser-addr { flex: 1; background: #151517; border-radius: 6px; padding: 6px 12px; font-size: 12px; color: var(--muted); margin-left: 8px; }
  .browser-body { padding: 60px 30px; text-align: center; }
  .browser-body .google-logo { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 600; margin-bottom: 20px; }
  .browser-body .search-box { max-width: 380px; margin: 0 auto; background: #151517; border: 1px solid var(--line); border-radius: 24px; padding: 10px 18px; font-size: 13px; color: var(--muted); text-align: left; }

  .voice-tag {
    position: absolute; top: -20px; right: 20px;
    background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
    padding: 10px 16px; font-size: 12.5px; max-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .hero-visual { position: relative; }

  /* ---------- Comando de voz ---------- */
  .voice-section { padding: 110px 0; border-top: 1px solid var(--line); }
  .voice-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
  .voice-grid h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
  .voice-grid p.lede { color: var(--muted); max-width: 42ch; margin-bottom: 24px; }
  .voice-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .voice-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .voice-list .ic { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 11px; }

  .amazon-mock .browser-body { padding: 24px; text-align: left; }
  .amazon-mock .addr-text { color: var(--fg); }
  .product-row { display: flex; gap: 12px; margin-top: 14px; }
  .product-card { flex: 1; background: #151517; border: 1px solid var(--line); border-radius: 8px; padding: 14px; text-align: center; font-size: 12px; }
  .product-card .price { font-weight: 600; margin-top: 8px; font-size: 13px; }
  .checklist { list-style: none; margin-top: 16px; font-size: 12.5px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }

  /* ---------- Tecnologia ---------- */
  .tech-section {padding: 110px 0;border-top: 1px solid var(--line);padding-right: 300px;background-image: url(./imgs/index-5.png);background-size: 56%;background-repeat: no-repeat;background-position: right;}
  .tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .tech-grid h2 { font-size: clamp(28px, 4vw, 42px); max-width: 12ch; margin: 10px 0 20px; }
  .tech-grid p.lede { color: var(--muted); max-width: 46ch; margin-bottom: 20px; }
  .feature-cards {display: grid;grid-template-columns: 1fr 1fr;gap: 1px;/* background: var(--line); *//* border: 1px solid var(--line); */}
  .feature-card {background: #060606e8;padding: 26px;border: 1px solid var(--line);margin: 2px;}
  .feature-card .ic { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 15px; }
  .feature-card h3 { font-size: 15px; margin-bottom: 6px; }
  .feature-card p { font-size: 13px; color: var(--muted); }

  /* ---------- Planos (teaser) ---------- */
  .plans-teaser, .voice-section { padding: 110px 0; border-top: 1px solid var(--line); background: #f4f3f0; color: #111; }
  .plans-teaser .eyebrow { color: #9a9a9a; }
  .plans-teaser h2 { color: #111; font-size: clamp(28px, 4vw, 42px); margin: 10px 0 8px; }
  .plans-teaser p.lede { color: #6b6b6b; max-width: 40ch; }
  .plans-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
  .plans-grid {display: grid;grid-template-columns: repeat(2, 1fr);gap: 10px;padding-top: 20px;}
  .plan-card { background: #fff; border: 1px solid #e2e0da; border-radius: 14px; padding: 26px; }
  .plan-card.featured { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
  .plan-card h3 { font-size: 17px; margin-bottom: 4px; }
  .plan-card .desc { font-size: 12.5px; color: #8a8a8a; margin-bottom: 16px; }
  .plan-card.featured .desc { color: #9a9a9a; }
  .plan-card .price {font-family: 'Space Grotesk', sans-serif;font-size: 26px;font-weight: 600;margin-bottom: 16px;}
  .plan-card .price span { font-size: 13px; font-weight: 400; color: #8a8a8a; }
  .plan-card ul { list-style: none; font-size: 13px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; color: #444; }
  .plan-card.featured ul { color: #ddd; }

  /* ---------- CTA final ---------- */
  .cta-final { padding: 100px 0; text-align: center; border-top: 1px solid var(--line); }
  .cta-final h2 { font-size: clamp(26px, 4vw, 38px); margin: 8px 0 20px; }
  .cta-final p { color: var(--muted); margin-bottom: 28px; }
  .split-top { display: flex; justify-content: space-between; align-items: center; }
  .orb-wrap { display: flex; justify-content: center; align-items: center; flex: 1; }
  .orb {
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(255,255,255,.05) 65%);
    box-shadow: 0 0 90px 30px rgba(255,255,255,.08);
  }
  .quote { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; max-width: 26ch; }
  .quote span { display: block; color: var(--muted); font-size: 13px; font-family: 'Inter'; margin-top: 8px; }

  .field { display: flex; align-items: center; gap: 10px; border: 1px solid #ddd; border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; background: #fff; }
  .field .ic { color: #999; }
  .field-inputs { flex: 1; }
  .field label { display: block; font-size: 10.5px; color: #999; }
  .field input { width: 100%; border: none; outline: none; font-size: 14px; background: transparent; }

  .divider-row { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: #999; font-size: 12px; }
  .divider-row::before, .divider-row::after { content: ""; flex: 1; border-top: 1px solid #e2e0da; }

  .error-msg { color: #d33; font-size: 13px; margin-top: 10px; }

  .legal-hero { padding: 70px 0 30px; border-bottom: 1px solid var(--line); }
  .legal-hero h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 10px; }
  .legal-hero p { color: var(--muted); font-size: 14px; }
  .legal-body { padding: 50px 0 100px; max-width: 760px; margin: 0 auto; }
  .legal-body h2 { font-size: 19px; margin: 38px 0 12px; }
  .legal-body h2:first-child { margin-top: 0; }
  .legal-body p, .legal-body li { color: #c7c7ca; font-size: 14.5px; line-height: 1.75; }
  .legal-body ul { margin: 10px 0 10px 20px; }
  .legal-body li { margin-bottom: 6px; }
  .legal-body strong { color: var(--fg); }
  .legal-body a { color: #9dbdf5; text-decoration: underline; }
  .toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 18px 22px; margin-bottom: 30px; }
  .toc p { color: var(--muted-dim); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
  .toc ul { margin: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .toc a { color: var(--muted); font-size: 13.5px; text-decoration: none; }
  .toc a:hover { color: var(--fg); }
  .callout { background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 6px; padding: 14px 18px; margin: 16px 0; }
  .callout p { color: #ddd; margin: 0; }

section.hero {
    background-image: url(./imgs/index-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

a.brand img {
    width: 150px;
    margin-left: -14px;
}

section#recursos:after {
    background-image: url(./imgs/index-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    content: ' ';
    position: absolute;
    width: 240px;
    height: 100%;
    top: 0;
    left: 0;
}

section#recursos {
    position: relative;
    background-image: url(./imgs/index-3.png);
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: right;
    padding-left: 250px;
    background-color: #f9f9f9;
}

.footer-top .brand {
    background-image: url(./imgs/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: -14px 50%;
    width: 150px;
    height: 50px;
}

.cta-final img {
    width: 80%;
}

.plans-top {align-self: flex-end;padding-bottom: 30px;}

.payment-note {
    padding-top: 30px;
}

img.split-footer {
    margin-left: -22px;
    width: 410px;
    margin-top: 160px;
}

.split-left h1 {
    color: #ffffff;
    margin-bottom: 12px;
}

.split-left .lede {color: #ffffffbd;font-size: 15px;}

.plan-card.featured>.plan-tag {
    position: absolute;
    background-color: #191919;
    padding: 4px 18px;
    margin-top: -38px;
    border-radius: 7px;
    font-size: 12px;
    margin-left: -2px;
    letter-spacing: 2px;
}

form.form-register {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 30px 0;
}

form.form-register button {
    height: 63px;
}

.split-right h2 {
    margin-bottom: 20px;
}

.split-left p.eyebrow {
    background-color: #ffffff29;
    width: 160px;
    font-size: 12px;
    margin: 12px 0px;
    text-align: center;
    border-radius: 12px;
    padding: 4px;
    margin-top: 50px !important;
    margin-bottom: 28px;
    color: #ffffff6e;
}

html[lang="pt"] .plan-real {
    display: block;
}
html[lang="pt"] .plan-dolar {
    display: none;
}

html[lang="en"] .plan-real, html[lang="es"] .plan-real {
    display: none;
}
html[lang="en"] .plan-dolar, html[lang="es"] .plan-dolar {
    display: block;
}

.gtranslate_wrapper {
    position: absolute;
    z-index: 999;
    right: 4%;
    top: 18px;
    zoom: 0.8;
}

.gtranslate_wrapper a {
    margin-left: 6px;
}

video {
    max-width: 528px;
    margin-bottom: 28px;
    border-radius: 28px;
}


















@media (max-width: 900px) {
  .split-screen { grid-template-columns: 1fr; }
  .split-left { display: none; }
  .split-right { padding: 40px 24px; }
  
  .hero-grid, .voice-grid, .tech-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
 
}
