    .dict_container {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
    }

    .dict_column {
      flex: 1 1 33.33%;
      box-sizing: border-box;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 300px;
      max-width: 100%;
    }

    .dict_card {
      width: 100%;
      background: #ffffff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
      text-align: center;
      margin-bottom: 20px;
    }

    .dict_card h3 {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .dict_card_number {
      font-size: 3.6rem;
      color: #779254;
      font-weight: 800;
    }

    .dict_chart {
      width: 100%;
      height: 300px;
      max-width: 400px;
      margin: 0 auto;
      margin-bottom: 25px;
    }

    .dict_buttons {
      display: flex;
      gap: 15px;
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .dict_button {
      flex: 1 1 40%;
      padding: 12px 20px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, #3d5c3b 0%, #7ba05b 100%);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
    }

    .dict_button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .dict_button--alt {
      background: linear-gradient(90deg,rgba(78, 90, 94, 1) 23%, rgba(70, 70, 74, 1) 100%);
      color: #fff;
    }

    .dict_chart_card {
      width: 100%;
      background: linear-gradient(135deg, #f9f9f9, #ffffff);
      border-radius: 18px;
      padding: 30px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 25px;
    }

    .dict_chart_card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    }

    .dict_chart_card h4 {
      font-size: 1.3rem;
      color: #333;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .dict_chart_canvas {
      width: 100%;
      height: 360px;
      max-width: 450px;
    }

    /* Responsivo para tablets y móviles */
    @media (max-width: 1000px) {
      .dict_column {
        flex: 1 1 100%;
        padding: 15px;
      }

      .dict_chart_card {
        padding: 20px;
      }

      .dict_chart_canvas {
        height: 300px;
        max-width: 100%;
      }

      .dict_button {
        flex: 1 1 100%;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 900px) {
      .dict_card_number {
        font-size: 2.8rem;
      }

      .dict_chart_card h4 {
        font-size: 1rem;
      }

      .dict_chart_canvas {
        height: 250px;
      }
    }
