  .infonm-m113 {
      width: 100%;
    float: left;
    margin: 0px 0% 0% 0%;
    font-size: 13px;
    color: green;
    text-align: center;
    padding: 0px 20px;
  }


  .card-contador-cf1 {
    font-family: Poppins, sans-serif;
    background: #ffffff;
    color: #1e293b;
    padding: 0px 13px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    margin: 20px auto;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    transition: all .3s ease;
  }

  .card-contador-cf1 i {
    font-size: 20px;
    color: #16a34a;
  }

  .btn-reenviar-cf1 {
    display: inline-block;
    padding: 7px 18px;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s ease;
    border: none;
  }
  .btn-reenviar-cf1:hover {
    background: #15803d;
  }
  
  .inc-cf1 {
    width: 100%;
    text-align: center;
    float: left;
    padding: 0% 20% 0% 20%;
    font-size: 13px;
  }


  body {
      font-family: 'Poppins', sans-serif;
      background-image: linear-gradient(135deg, #ffa500, #000000);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px 30px 20px;
      flex-direction: column;
    }

    .logo-top-m113 {
      margin-bottom: 15px;
      text-align: center;
    }

    .logo-top-m113 img {
      max-height: 80px;
    }

    .step-indicator-m113 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;
    }

    .step-m113 {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: #ced4da;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: background-color 0.4s ease, transform 0.3s ease;
    }

    .step-m113.active {
      background-color: #28a745;
      transform: scale(1.1);
    }

    .line-m113 {
      width: 40px;
      height: 4px;
      background-color: #ced4da;
      border-radius: 4px;
      transition: background-color 0.4s ease;
    }

    .line-m113.active {
      background-color: #28a745;
    }

    .card-clean-m113 {
      background: #fff;
      padding: 40px 30px;
      width: 100%;
      max-width: 480px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      display: none;
      animation: fadeSlideUp 0.4s ease-out;
    }

    .card-clean-m113.active {
      display: block;
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .card-clean-m113 h2 {
      font-size: 1.4rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 10px;
    }

    .card-clean-m113 p {
      font-size: 0.93rem;
      color: #6c757d;
      text-align: center;
      margin-bottom: 30px;
    }

    .input-group-m113 {
      position: relative;
      margin-bottom: 22px;
    }

    .input-group-m113 i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
    }

    .input-group-m113 input,
    .input-group-m113 select {
      padding-left: 42px;
      height: 46px;
      border-radius: 14px;
    }

    .form-switch-m113 {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 12px;
    }

    .form-switch-m113 label {
      display: flex;
      align-items: center;
      font-size: 0.92rem;
      color: #333;
      font-weight: 500;
      margin: 0;
    }

    .form-switch-m113 i {
      margin-right: 8px;
      color: #0d6efd;
    }

    .btn-clean-m113 {
      margin-top: 30px;
      padding: 12px;
      font-weight: 600;
      border-radius: 14px;
      transition: 0.3s ease;
    }

    .btn-clean-m113 i {
      margin-left: 8px;
    }

    .btn-clean-m113:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
    }


body.efeito-final {
  background: linear-gradient(270deg, #eee, #ddd , #ffa500 ,   #ffa500 , #ddd);
  background-size: 1000% 1000%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-top-m113.final {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 240px;
  transform: translate(-50%, -50%);
  z-index: 1000;
  animation: pulseLogo 1.8s infinite ease-in-out;
  transition: all 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-top-m113.final {
  transition: all 2s ease-in-out;
}

.logo-top-m113.final img {
  width: 100%;
  transition: all 1.6s ease;
}

@keyframes pulseLogo {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.07); }
  100% { transform: translate(-50%, -50%) scale(1); }
}