 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    img {
        width: 120px;
    }
    .footer-img img {
        width: 200px;
    }
    .card.clean {
        background: transparent;
        box-shadow: none;
    }
    body {
      background: #f7f8fc;
      color: #1e1e1e;
    }

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

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    video {
        width: 100% !important;
        border-radius: 10px !important;
    }
    /* HEADER */
    header {
      background: #fff;
      border-bottom: 1px solid #eee;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .logo {
      font-weight: 700;
      font-size: 22px;
      color: #2d4cc8;
    }

    nav {
      display: flex;
      gap: 24px;
      font-size: 14px;
      color: #555;
    }

    .btn {
      background: #4f6df5;
      color: #fff;
      padding: 10px 18px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
    }

    /* HERO */
    .hero {
      background: linear-gradient(
        rgba(35, 54, 140, 0.85),
        rgba(35, 54, 140, 0.85)
      ),
      url("https://bssdigital.com.br/img/teclado.jpg") center/cover;
      border-radius: 24px;
      margin: 40px auto;
      padding: 60px;
      color: #fff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: 36px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 24px;
      max-width: 480px;
    }

    .metrics {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .metric {
      border-left: 2px dashed rgba(255,255,255,0.4);
      padding-left: 16px;
    }

    .metric strong {
      font-size: 22px;
      display: block;
    }

    .metric span {
      font-size: 13px;
      opacity: 0.8;
    }

    /* SEÇÕES */
    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 16px;
      font-size: 26px;
    }

    .section-desc {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
      font-size: 14px;
      color: #666;
    }

    /* SERVIÇOS */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .card {
      background: #fff;
      padding: 28px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
      text-align: center;
    }

    .card .icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #4f6df5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: #4f6df5;
      font-weight: 700;
    }

    .card h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 13px;
      color: #666;
    }

    /* METODOLOGIA */
    .methodology {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .methodology img {
      width: 100%;
      border-radius: 16px;
    }

    .methodology h2 {
      margin-bottom: 16px;
    }

    .methodology p {
      font-size: 14px;
      color: #666;
      margin-bottom: 12px;
    }

    /* BLOCO AZUL */
    .highlight {
      background: linear-gradient(
        rgba(35, 54, 140, 0.9),
        rgba(35, 54, 140, 0.9)
      ),
      url("https://bssdigital.com.br/img/teclado.jpg") center/cover;
      color: #fff;
      padding: 60px 20px;
      border-radius: 20px;
      text-align: center;
    }

    .highlight h2 {
      margin-bottom: 16px;
    }

    /* BENEFÍCIOS */
    .benefits {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .benefit {
      background: #fff;
      display: flex;
      align-items: center;
      padding: 20px;
      border-radius: 10px;
      gap: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    }

    .benefit-logo {
      background: #223a8f;
      color: #fff;
      padding: 16px;
      border-radius: 8px;
      font-weight: 700;
      min-width: 80px;
      text-align: center;
    }

    .benefit p {
      font-size: 14px;
      color: #666;
    }

    /* FOOTER */
    footer {
      background: #223a8f;
      color: #fff;
      padding: 60px 0;
      margin-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }

    footer ul {
      list-style: none;
      font-size: 14px;
      opacity: 0.9;
    }

    footer li {
      margin-bottom: 8px;
    }

    /* RESPONSIVO */
    @media (max-width: 900px) {
      .hero-grid,
      .methodology {
        grid-template-columns: 1fr;
      }

      nav {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }