:root {
  --brand-start: #ffa53a;
  --brand-mid: #ff5a67;
  --brand-end: #ff2e7a;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
  
}
.center {
  text-align: center;
  
}
.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff6b6b;
  font-size: 0.8rem;
  
}
.sub {
  color: var(--muted);
  max-width: 740px;
  margin: 24px auto; /* 24px em cima e embaixo, auto nas laterais */
  text-align: center; /* centraliza o texto */
  
}
.grad {
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: #fff;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  padding: 10px;
}
.muted {
  color: var(--muted);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  height: 32px;
  width: auto;
}
.brand-logo.small {
  height: 28px;
}
.brand-text {
  font-weight: 900;
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  border-radius: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  padding: 8px 12px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-end);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn.small {
  padding: 8px 14px;
  font-size: 0.9rem;
}
.btn-gradient {
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 70, 120, 0.2);
}
.btn-outline {
  border-color: #cbd5e1;
  color: #0f172a;
}
.btn-light {
  background: #fff;
  color: #0f172a;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #0f172a;
}
.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 14px 0 6px;
  font-weight: 900;
}
.hero-copy p {
  color: var(--muted);
  font-size: 18px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.social-proof-inline {
  align-items: center;
  gap: 1px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.avatars img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  margin-left: -8px;
}
.avatars img:first-child {
  margin-left: 0;
}

.hero-media {
  display: flex;
  align-items: flex-end;
  gap: 40px; /* espaço entre celular e monitor */
}

/* --- versão mobile --- */
@media (max-width: 780px) {
  .hero-media {
    flex-direction: column; /* empilha */
    align-items: center; /* centraliza no meio */
    gap: 40px; /* espaço menor no mobile */
  }
  


  .phone {
    width: 220px; /* reduz um pouco no mobile */
    max-width: 100%;
    border-radius: 32px;
    border: 2px solid var(--border);
    background: #b0a9a9;
    box-shadow: 0 40px 30px rgba(16, 24, 40, 0.12);
    overflow: hidden;
    margin: 0 auto;
  }

  .computer {
    width: 90%; /* ocupa largura total */
    max-width: 3750px;
  }

  .computer-screen {
    height: 120px; /* reduz altura para não ficar gigante */
  }

  .computer-stand {
    height: 60px;
  }

  .phone-button {
    display: none;
  }
}

.devices {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px; /* espaço entre celular e computador */
  margin-top: 50px;
}

.phone {
  width: 180px;
  max-width: 100%;
  border-radius: 32px;
  border: 2px solid var(--border);
  background: #b0a9a9;
  box-shadow: 0 40px 30px rgba(16, 24, 40, 0.12);
  overflow: hidden;
  margin: 20 auto;
}
.phone::after {
  content: "";
  position: absolute;
  bottom: -30px; /* distância da base do celular */
  left: 50%;
  transform: translateX(-50%);
  width: 70%; /* largura da sombra */
  height: 20px; /* altura da sombra */
  background: rgba(0, 0, 0, 0.25);
  filter: blur(12px);
  border-radius: 50%;
}
.phone-notch {
  height: 28px;
  background: #f1f5f9;
}
.phone-screen {
  aspect-ratio: 9/16;
  background: #f1f5f9;
  overflow: hidden;
}
.phone-screen video {
  width: 98%;
  height: 90%;
  object-fit: cover;
  object-position: top;
}

.phone-button {
  width: 28px; /* tamanho do botão */
  height: 28px;
  border-radius: 50%; /* deixa redondo */
  background: #f1f5f9; /* cor do botão */
  border: 2px solid #b4b4b4; /* borda para dar destaque */
  position: absolute;
  bottom: 26px; /* distância do fundo */
  left: 57.9%;
  transform: translateX(-245%); /* centraliza horizontalmente */
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
  display: none;
}

.computer-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a tela */
  border-radius: 8px; /* segue a curvatura da tela */
  display: block;
}

.computer {
  width: 400px;
  text-align: center;
  position: relative;
  perspective: 1000px;
}

/* Sombra realista no chão */
.computer::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 25px;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

/* Tela do monitor */
.computer-screen {
  width: 100%;
  height: 250px;
  background: linear-gradient(
    145deg,
    #0d0d0d 0%,
    #1a1a1a 100%
  ); /* vidro escuro */
  border: 6px solid #c4c3c3; /* moldura metálica realista */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 3px 15px rgba(255, 255, 255, 0.05),
    /* brilho interno leve */ 0 8px 20px rgba(0, 0, 0, 0.3),
    /* sombra externa */ 0 0 0 2px rgba(200, 200, 200, 0.1); /* borda fina de reflexão */
  position: relative;
}

/* Simulação de reflexo na tela */
.computer-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
  border-radius: 12px;
}

/* Stand / suporte metálico */
.computer-stand {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #d9d9d9, #b0b0b0);
  border-radius: 0 0 12px 12px;
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Base larga do monitor */
.computer-base {
  width: 220px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #f8f8f8, #9c9c9c);
  border-radius: 10px;
  box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.25),
    0 3px 12px rgba(0, 0, 0, 0.2);
}

.blur-blob {
  position: absolute;
  filter: blur(150px);
  opacity: 0.35;
  pointer-events: none;
}
.blob-1 {
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
}
.blob-2 {
  left: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mt-32 {
  margin-top: 32px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.04);
}
.card h3 {
  margin: 6px 0 6px;
  font-size: 20px;
}
.card p {
  color: var(--muted);
}
.card.list ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.card.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0f172a;
}
.card.list svg {
  color: var(--brand-end);
  margin-top: 2px;
}
.icon .stroke {
  stroke: #fff;
}

.how .step {
  position: relative;
}
.badge {
  position: absolute;
  left: 22px;
  top: -16px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: #fff;
  font-weight: 800;
}

.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.06);
  position: relative;
  overflow: hidden;
}
.banner.small {
  grid-template-columns: 1.2fr 0.8fr;
}
.banner-media video {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: block;
  background: #000;
  max-height: 380px;
  object-fit: cover;
}
.banner-copy h3 {
  font-size: 28px;
  margin: 0 0 6px;
}
.banner-copy p {
  color: var(--muted);
}

.price-cards .price {
  position: relative;
}
.price-cards .popular {
  outline: 2px solid var(--brand-end);
}
.tag {
  position: absolute;
  left: 22px;
  top: -14px;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 70, 120, 0.3);
}
.price-xl {
  font-weight: 900;
  font-size: 28px;
  margin: 6px 0 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stats div {
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}
.stats b {
  font-size: 28px;
}
.stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.cta {
  position: relative;
  overflow: hidden;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(
    90deg,
    var(--brand-start),
    var(--brand-mid),
    var(--brand-end)
  );
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(255, 70, 120, 0.25);
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq details {
  cursor: pointer;
}
.faq summary {
  font-weight: 700;
}
.faq details p {
  color: var(--muted);
  margin-top: 6px;
}
.faqs details {
  padding: 18px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.footer .policy {
  color: inherit;
}

.grid-3.feature-cards .card {
  min-height: 170px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .banner {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 70px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.15);
    padding: 14px;
    flex-direction: column;
    gap: 12px;
  }
  .hamburger {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
}


/* Só no mobile */
@media (max-width: 770px) {
  .hero-copy .computer .computer-screen video {
    width: 100% !important;   /* derruba o 125% apenas no mobile */
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
  }


  .hero .phone {
    position: relative;        /* contém o ::after só no mobile */
  }

 
}

/* ===== Ajustes MOBILE ===== */
@media (max-width: 780px) {
  /* 1) Títulos do herói menores, sem vazar */
  .hero-copy h1 { 
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.2;
    word-break: normal;
    hyphens: auto;
  }
  .hero-copy h2 {
    font-size: clamp(18px, 6.2vw, 24px);
    line-height: 1.25;
  }

  /* 2) Botões do herói um embaixo do outro */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-ctas .btn { width: 100%; }

  /* 3) Banner: texto em cima, stats na linha de baixo, lado a lado */
  .banner {
    grid-template-columns: 1fr;     /* vira 1 coluna */
    grid-row-gap: 16px;
  }
  .banner-copy { order: 1; }
  .banner .stats {
    order: 2;
    grid-template-columns: repeat(3, 1fr); /* stats lado a lado */
  }

  /* 4) Hero media: computador um pouco menor e vídeo sem vazar */
  .hero-media { gap: 28px; }
  .hero .computer { 
    width: 320px;          /* reduz a largura */
    max-width: 90%;
  }
  .hero .computer-screen { height: 180px; }
  .hero .computer-screen video {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
  }

  /* Segurança extra: sem rolagem lateral */
  html, body { overflow-x: hidden; }
}


