.content #chamadas {
  .coordenacao {
    padding-bottom: 2em;
  }

  #datas-importantes {
    background-color: var(--table-header-color-bg);
    padding-top: 2em;
    margin-bottom: 2em;

    h2 {
      text-decoration: none !important;
      text-transform: uppercase;
      border-bottom: none !important;
      text-align: center !important;
      font-weight: 400;
    }

    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .card-title {
      color: var(--prazo-data-color);
      font-weight: 500;
      font-size: 1.5em;
      padding: 1em 1em 0;
    }

    .card-body {
      flex-grow: 1;
      display: flex;
      flex-direction: column-reverse;
      align-items: stretch;
    }

    .card-footer {
      background-color: var(--prazo-footer-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 5em;
      font-weight: 500;
      color: white;
      margin-top: auto;
    }

    .dia {
      display: block;
      text-align: left;
      font-size: 2.5em;
      font-weight: 600;
      line-height: 1.2;
    }

    .mes {
      display: block;
      text-align: left;
      font-size: 1em;
      font-weight: 500;
    }

    .ano {
      display: block;
      text-align: left;
      font-size: 0.7em;
      font-weight: 400;
    }

    .prazo-firme {
      display: block;
      text-align: center;
      color: var(--prazo-firme-color);
      font-weight: 400;
      font-size: 0.7em;
      margin-top: 10px;
    }

    .data-riscada {
      text-decoration: line-through;
      color: var(--gray);
    }

    .card-text {
      margin-bottom: 0;
    }

    .card-passado {
      .card-title {
        color: var(--gray);
      }

      .prazo-firme {
        color: var(--gray);
      }
      
      .card-footer {
        background-color: var(--gray);
      }
    }

    @media (max-width: 575.98px) {
      .card-footer {
        min-height: auto;
      }

      .card-body {
        padding: 0.5em;
      }

      .dia,
      .mes,
      .ano {
        text-align: center;
      }
    }
  }
}
