:root{
    --fz-text: rgba(15,23,42,.92);
    --fz-muted: rgba(15,23,42,.72);
  }
  
  /* ESSENCIAL: sem margem do browser + footer preso embaixo */
  html, body { height: 100%; }
  body.site-body{
    margin: 0;
    padding: 0;
    color: var(--fz-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main.site-main{ flex: 1; }
  
  .site-navbar{ margin:0; }
  .site-logo{ width:36px; height:36px; }
  
  .site-muted{ color: var(--fz-muted); }
  
  .site-card{
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
    border-radius: 16px;
  }
  
  .site-footer{
    border-top: 1px solid rgba(15,23,42,.08);
    margin-top: 48px;
  }
  
  /* Degradê TOP */
  .site-hero{
    background:
      radial-gradient(1200px 600px at 10% 10%, rgba(13,110,253,.16), transparent),
      radial-gradient(900px 500px at 90% 30%, rgba(32,201,151,.14), transparent);
    padding: 64px 0 48px;
  }
  
  /* Cards */
  .site-feature{
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.08);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
  }
  
  .site-section-title{
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: .78rem;
    color: rgba(15,23,42,.60);
  }
  
  .site-robot-wrap {
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
  }
  
  .site-robot-frame{
    display:flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 auto;
  }
  
  .site-robot-img{
    width: min(520px, 85vw);
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(15,23,42,.18));
  }
  
  @media (min-width: 992px){
    .site-robot-img{
      width: 420px;
    }
  }
  
  /* ===========================================
     Dashboard image (HOME > Recursos)
     =========================================== */
  
  .site-dashboard-shot{
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    overflow: hidden;
    background: #fff;
  }
  
  /* chave: não deixar a imagem “virar banner” */
  .site-dashboard-shot img{
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* opcional: deixa mais “print de app” */
  @media (min-width: 992px){
    .site-dashboard-shot{
      max-width: 520px;
    }
  }
  

  /* Pricing: deixa os cards bem “SaaS” e alinhados */
.table > :not(caption) > * > * { vertical-align: middle; }
.accordion-button { font-weight: 600; }
